UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

54 lines (53 loc) 1.34 kB
/** @typedef {typeof __propDef.props} WrapperProps */ /** @typedef {typeof __propDef.events} WrapperEvents */ /** @typedef {typeof __propDef.slots} WrapperSlots */ export default class Wrapper extends SvelteComponentTyped<{ class?: string; inverted?: boolean; icon?: string; style?: {}; size?: string; color?: string; state?: string; fluid?: boolean; labeled?: string; corner?: boolean; action?: string; transparent?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type WrapperProps = typeof __propDef.props; export type WrapperEvents = typeof __propDef.events; export type WrapperSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; inverted?: boolean; icon?: string; style?: {}; size?: string; color?: string; state?: string; fluid?: boolean; labeled?: string; corner?: boolean; action?: string; transparent?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};