@babeard/svelte-heroicons
Version:
Svelte wrappers for the Heroicons v2 library.
40 lines (39 loc) • 1.05 kB
TypeScript
/** @typedef {typeof __propDef.props} IdentificationProps */
/** @typedef {typeof __propDef.events} IdentificationEvents */
/** @typedef {typeof __propDef.slots} IdentificationSlots */
export default class Identification extends SvelteComponent<{
[x: string]: any;
}, {
click: MouseEvent;
mouseover: MouseEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
keydown: KeyboardEvent;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type IdentificationProps = typeof __propDef.props;
export type IdentificationEvents = typeof __propDef.events;
export type IdentificationSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
click: MouseEvent;
mouseover: MouseEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
keydown: KeyboardEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};