UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

40 lines (39 loc) 989 B
/** @typedef {typeof __propDef.props} SectionProps */ /** @typedef {typeof __propDef.events} SectionEvents */ /** @typedef {typeof __propDef.slots} SectionSlots */ export default class Section extends SvelteComponentTyped<{ class: any; style: any; active?: boolean; as?: string; }, { click: MouseEvent; mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type SectionProps = typeof __propDef.props; export type SectionEvents = typeof __propDef.events; export type SectionSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; active?: boolean; as?: string; }; events: { click: MouseEvent; mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};