UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

36 lines (35 loc) 908 B
/** @typedef {typeof __propDef.props} StatisticsProps */ /** @typedef {typeof __propDef.events} StatisticsEvents */ /** @typedef {typeof __propDef.slots} StatisticsSlots */ export default class Statistics extends SvelteComponentTyped<{ class: any; column: any; style: any; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type StatisticsProps = typeof __propDef.props; export type StatisticsEvents = typeof __propDef.events; export type StatisticsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; column: any; style: any; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};