import { EPSG } from '@basemaps/geo'; import { ImageFormat } from '@basemaps/tiler'; export interface ActionData { version: string; action: string; rest: string[]; urlPath: string; } export declare enum TileType { WMTS = "WMTS", Image = "image" } export declare type TileData = TileDataXyz | TileDataWmts; export interface TileDataXyz { type: TileType.Image; name: string; projection: EPSG; x: number; y: number; z: number; ext: ImageFormat; } export interface TileDataWmts { type: TileType.WMTS; name: string; projection: EPSG | null; } /** * Extract tile variables (`tileSet`, `projection`, `x`, `y`, `z` and `ext`) from an array **/ export declare function tileFromPath(path: string[]): TileData | null; //# sourceMappingURL=api.path.d.ts.map