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) 720 B
/** @typedef {typeof __propDef.props} FailIconProps */ /** @typedef {typeof __propDef.events} FailIconEvents */ /** @typedef {typeof __propDef.slots} FailIconSlots */ export default class FailIcon extends SvelteComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type FailIconProps = typeof __propDef.props; export type FailIconEvents = typeof __propDef.events; export type FailIconSlots = 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 {};