svelte-naver-maps
Version:
Svelte component for Naver Maps
22 lines (21 loc) • 701 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { Bounds, GroundOverlayOptions } from "../types";
declare const __propDef: {
props: {
url: string;
bounds: Bounds;
groundOverlayOptions?: GroundOverlayOptions | undefined;
};
events: {
load: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type GroundOverlayProps = typeof __propDef.props;
export type GroundOverlayEvents = typeof __propDef.events;
export type GroundOverlaySlots = typeof __propDef.slots;
export default class GroundOverlay extends SvelteComponentTyped<GroundOverlayProps, GroundOverlayEvents, GroundOverlaySlots> {
}
export {};