UNPKG

svelte-naver-maps

Version:
21 lines (20 loc) 634 B
import { SvelteComponentTyped } from "svelte"; import type { Point, PolygonOptions } from "../types"; declare const __propDef: { props: { paths?: Point[][] | undefined; polygonOptions?: PolygonOptions | undefined; }; events: { load: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type PolygonProps = typeof __propDef.props; export type PolygonEvents = typeof __propDef.events; export type PolygonSlots = typeof __propDef.slots; export default class Polygon extends SvelteComponentTyped<PolygonProps, PolygonEvents, PolygonSlots> { } export {};