UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

34 lines (33 loc) 855 B
/** @typedef {typeof __propDef.props} DividerProps */ /** @typedef {typeof __propDef.events} DividerEvents */ /** @typedef {typeof __propDef.slots} DividerSlots */ export default class Divider extends SvelteComponentTyped<{ class?: string; style?: {}; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type DividerProps = typeof __propDef.props; export type DividerEvents = typeof __propDef.events; export type DividerSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; style?: {}; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};