@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) • 734 B
TypeScript
/** @typedef {typeof __propDef.props} SearchIconProps */
/** @typedef {typeof __propDef.events} SearchIconEvents */
/** @typedef {typeof __propDef.slots} SearchIconSlots */
export default class SearchIcon extends SvelteComponent<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type SearchIconProps = typeof __propDef.props;
export type SearchIconEvents = typeof __propDef.events;
export type SearchIconSlots = 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 {};