svantic
Version:
A set of Fomantic-UI components for Svelte framework
46 lines (45 loc) • 1.11 kB
TypeScript
/** @typedef {typeof __propDef.props} StatisticProps */
/** @typedef {typeof __propDef.events} StatisticEvents */
/** @typedef {typeof __propDef.slots} StatisticSlots */
export default class Statistic extends SvelteComponentTyped<{
style: any;
color: any;
size: any;
floated: any;
stackable: any;
inverted: any;
horizontal: any;
class: any;
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type StatisticProps = typeof __propDef.props;
export type StatisticEvents = typeof __propDef.events;
export type StatisticSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
style: any;
color: any;
size: any;
floated: any;
stackable: any;
inverted: any;
horizontal: any;
class: any;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};