UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

54 lines (53 loc) 1.37 kB
/** @typedef {typeof __propDef.props} LoaderProps */ /** @typedef {typeof __propDef.events} LoaderEvents */ /** @typedef {typeof __propDef.slots} LoaderSlots */ export default class Loader extends SvelteComponentTyped<{ class?: string; disabled?: boolean; inverted?: boolean; icon?: boolean; style?: {}; active?: boolean; center?: boolean; text?: boolean; inline?: boolean; intermediat?: boolean; speed?: string; animationStyle?: string; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type LoaderProps = typeof __propDef.props; export type LoaderEvents = typeof __propDef.events; export type LoaderSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; disabled?: boolean; inverted?: boolean; icon?: boolean; style?: {}; active?: boolean; center?: boolean; text?: boolean; inline?: boolean; intermediat?: boolean; speed?: string; animationStyle?: string; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};