Interface PmtilesSourceLike

The pmtiles Source surface — a byte-range reader over the archive. A remote archive uses the reader's own FetchSource; a local fixture (tests) supplies a buffer-backed implementation.

interface PmtilesSourceLike {
    getBytes(offset: number, length: number, signal?: AbortSignal, etag?: string): Promise<PmtilesRangeResponse>;
    getKey(): string;
}

Methods