Interface PmtilesProtocolModuleLike

The minimal slice of typeof import("pmtiles") registration needs.

interface PmtilesProtocolModuleLike {
    Protocol: (new (options?: {
        errorOnMissingTile?: boolean;
        metadata?: boolean;
    }) => PmtilesProtocolLike);
}

Properties

Properties

Protocol: (new (options?: {
    errorOnMissingTile?: boolean;
    metadata?: boolean;
}) => PmtilesProtocolLike)