UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

36 lines (35 loc) 879 B
/** @typedef {typeof __propDef.props} ValueProps */ /** @typedef {typeof __propDef.events} ValueEvents */ /** @typedef {typeof __propDef.slots} ValueSlots */ export default class Value extends SvelteComponentTyped<{ class: any; style: any; text?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type ValueProps = typeof __propDef.props; export type ValueEvents = typeof __propDef.events; export type ValueSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; text?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};