/** * A tileset style definition */ export type TilesetStyle = { /** * Unique identifier for this tileset style * @minLength 1 */ key: string; /** * Display name for this tileset style * @minLength 1 */ name: string; /** * URL to the tileset style definition. This should be a JSON file matching * the MapLibre style specification. * @format uri */ url: string; }; /** * Collection of tileset styles */ export type TilesetCollection = { /** * Default tileset style that should be used */ default: TilesetStyle; /** * Additional tileset styles that can be used */ others?: TilesetStyle[]; }; //# sourceMappingURL=tileset.d.ts.map