UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

7 lines (6 loc) 266 B
import { type Writable } from 'svelte/store'; import { type Map } from 'ol'; export declare const MAP_CONTEXT = "Map"; export type MapContext = Writable<Map | undefined>; export declare function setMap(map?: Map): void; export declare function getMap(): MapContext;