UNPKG

svelte-maplibre-gl

Version:

Build interactive web maps effortlessly with MapLibre GL JS and Svelte

11 lines (10 loc) 388 B
import type { Snippet } from 'svelte'; import maplibregl from 'maplibre-gl'; interface Props extends Omit<maplibregl.VideoSourceSpecification, 'type'> { id?: string; source?: maplibregl.VideoSource; children?: Snippet; } declare const VideoSource: import("svelte").Component<Props, {}, "source">; type VideoSource = ReturnType<typeof VideoSource>; export default VideoSource;