svelte-maplibre-gl
Version:
Build interactive web maps effortlessly with MapLibre GL JS and Svelte
11 lines (10 loc) • 442 B
TypeScript
import type { Snippet } from 'svelte';
import type * as maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.RasterDEMSourceSpecification, 'type'> {
id?: string;
source?: maplibregl.RasterDEMTileSource;
children?: Snippet;
}
declare const RasterDEMTileSource: import("svelte").Component<Props, {}, "source">;
type RasterDEMTileSource = ReturnType<typeof RasterDEMTileSource>;
export default RasterDEMTileSource;