UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

32 lines (31 loc) 796 B
/** @typedef {typeof __propDef.props} BodyProps */ /** @typedef {typeof __propDef.events} BodyEvents */ /** @typedef {typeof __propDef.slots} BodySlots */ export default class Body extends SvelteComponentTyped<{ class?: string; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type BodyProps = typeof __propDef.props; export type BodyEvents = typeof __propDef.events; export type BodySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};