agnostic-svelte
Version:
AgnosticUI (svelte)
20 lines (19 loc) • 621 B
TypeScript
/** @typedef {typeof __propDef.props} IconSlotProps */
/** @typedef {typeof __propDef.events} IconSlotEvents */
/** @typedef {typeof __propDef.slots} IconSlotSlots */
export default class IconSlot extends SvelteComponentTyped<{}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type IconSlotProps = typeof __propDef.props;
export type IconSlotEvents = typeof __propDef.events;
export type IconSlotSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};