UNPKG

svelte-naver-maps

Version:
24 lines (23 loc) 706 B
import { SvelteComponentTyped } from "svelte"; import type { InfoWindowOptions } from "../types"; declare const __propDef: { props: { [x: string]: any; open?: boolean | undefined; infoWindowOptions?: InfoWindowOptions | undefined; }; events: { load: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type InfoWindowProps = typeof __propDef.props; export type InfoWindowEvents = typeof __propDef.events; export type InfoWindowSlots = typeof __propDef.slots; export default class InfoWindow extends SvelteComponentTyped<InfoWindowProps, InfoWindowEvents, InfoWindowSlots> { } export {};