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