UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

30 lines (29 loc) 752 B
/** @typedef {typeof __propDef.props} BodyProps */ /** @typedef {typeof __propDef.events} BodyEvents */ /** @typedef {typeof __propDef.slots} BodySlots */ export default class Body extends SvelteComponentTyped<{ style: any; class?: string; }, { [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: { style: any; class?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};