UNPKG

@daks.dev/svelte.sdk

Version:
39 lines (38 loc) 1.26 kB
import type { YandexMapInstance } from './index.d.ts'; interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const YandexMap: $$__sveltets_2_IsomorphicComponent<{ class?: ClassName; data: { state: Record<string, unknown>; options: Record<string, unknown>; locations: Record<string, unknown>[]; }; apikey?: any; lang?: string; tag?: string; map?: YandexMapInstance; get?: () => YandexMapInstance; }, { mousedown: MouseEvent; mouseup: MouseEvent; touchstart: TouchEvent; touchend: TouchEvent; } & { [evt: string]: CustomEvent<any>; }, {}, { get: () => YandexMapInstance; }, string>; type YandexMap = InstanceType<typeof YandexMap>; export default YandexMap;