svantic
Version:
A set of Fomantic-UI components for Svelte framework
34 lines (33 loc) • 840 B
TypeScript
/** @typedef {typeof __propDef.props} AvatarProps */
/** @typedef {typeof __propDef.events} AvatarEvents */
/** @typedef {typeof __propDef.slots} AvatarSlots */
export default class Avatar extends SvelteComponentTyped<{
class: any;
style: any;
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type AvatarProps = typeof __propDef.props;
export type AvatarEvents = typeof __propDef.events;
export type AvatarSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class: any;
style: any;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};