UNPKG

@maptiler/geocoding-control

Version:

The Javascript & TypeScript Map Control component for MapTiler Geocoding service. Easy to be integrated into any JavaScript mapping application.

26 lines (25 loc) 741 B
/** @typedef {typeof __propDef.props} LoadingIconProps */ /** @typedef {typeof __propDef.events} LoadingIconEvents */ /** @typedef {typeof __propDef.slots} LoadingIconSlots */ export default class LoadingIcon extends SvelteComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type LoadingIconProps = typeof __propDef.props; export type LoadingIconEvents = typeof __propDef.events; export type LoadingIconSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; exports?: undefined; bindings?: undefined; }; export {};