agnostic-svelte
Version:
AgnosticUI (svelte)
26 lines (25 loc) • 771 B
TypeScript
/** @typedef {typeof __propDef.props} AlertIconExampleProps */
/** @typedef {typeof __propDef.events} AlertIconExampleEvents */
/** @typedef {typeof __propDef.slots} AlertIconExampleSlots */
export default class AlertIconExample extends SvelteComponentTyped<{
utilityClasses: any;
type: any;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type AlertIconExampleProps = typeof __propDef.props;
export type AlertIconExampleEvents = typeof __propDef.events;
export type AlertIconExampleSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
utilityClasses: any;
type: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};