UNPKG

svelte-maplibre-gl

Version:

Build interactive web maps effortlessly with MapLibre GL JS and Svelte

8 lines (7 loc) 278 B
import type * as maplibregl from 'maplibre-gl'; interface Props extends Omit<maplibregl.TerrainSpecification, 'source'> { source?: string; } declare const Terrain: import("svelte").Component<Props, {}, "">; type Terrain = ReturnType<typeof Terrain>; export default Terrain;