UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

86 lines (85 loc) 2.18 kB
/** @typedef {typeof __propDef.props} SegmentProps */ /** @typedef {typeof __propDef.events} SegmentEvents */ /** @typedef {typeof __propDef.slots} SegmentSlots */ export default class Segment extends SvelteComponentTyped<{ attached: any; aligned: any; floated: any; class?: string; disabled?: boolean; secondary?: boolean; inverted?: boolean; style?: {}; color?: string; raised?: boolean; placeholder?: boolean; stacked?: boolean; piled?: boolean; vertical?: boolean; loading?: boolean; tertiary?: boolean; tall?: boolean; double?: boolean; padded?: boolean; fitted?: boolean; compact?: boolean; circular?: boolean; clearing?: boolean; basic?: boolean; blurring?: boolean; dimmable?: boolean; dimmed?: boolean; container?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type SegmentProps = typeof __propDef.props; export type SegmentEvents = typeof __propDef.events; export type SegmentSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; aligned: any; floated: any; class?: string; disabled?: boolean; secondary?: boolean; inverted?: boolean; style?: {}; color?: string; raised?: boolean; placeholder?: boolean; stacked?: boolean; piled?: boolean; vertical?: boolean; loading?: boolean; tertiary?: boolean; tall?: boolean; double?: boolean; padded?: boolean; fitted?: boolean; compact?: boolean; circular?: boolean; clearing?: boolean; basic?: boolean; blurring?: boolean; dimmable?: boolean; dimmed?: boolean; container?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};