UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

56 lines (55 loc) 1.38 kB
/** @typedef {typeof __propDef.props} StepsProps */ /** @typedef {typeof __propDef.events} StepsEvents */ /** @typedef {typeof __propDef.slots} StepsSlots */ export default class Steps extends SvelteComponentTyped<{ attached: any; wide: any; side: any; class?: string; inverted?: boolean; style?: {}; size?: string; ordered?: boolean; vertical?: boolean; unstackable?: boolean; stackable?: boolean; fluid?: boolean; tablet?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type StepsProps = typeof __propDef.props; export type StepsEvents = typeof __propDef.events; export type StepsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; wide: any; side: any; class?: string; inverted?: boolean; style?: {}; size?: string; ordered?: boolean; vertical?: boolean; unstackable?: boolean; stackable?: boolean; fluid?: boolean; tablet?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};