UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

58 lines (57 loc) 1.46 kB
/** @typedef {typeof __propDef.props} MessageProps */ /** @typedef {typeof __propDef.events} MessageEvents */ /** @typedef {typeof __propDef.slots} MessageSlots */ export default class Message extends SvelteComponentTyped<{ attached: any; size: any; floating: any; class?: string; icon?: boolean; style?: {}; compact?: boolean; visible?: boolean; message?: boolean; list?: boolean; dissmissible?: boolean; info?: boolean; warning?: boolean; positive?: boolean; negative?: boolean; hidden?: boolean; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type MessageProps = typeof __propDef.props; export type MessageEvents = typeof __propDef.events; export type MessageSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; size: any; floating: any; class?: string; icon?: boolean; style?: {}; compact?: boolean; visible?: boolean; message?: boolean; list?: boolean; dissmissible?: boolean; info?: boolean; warning?: boolean; positive?: boolean; negative?: boolean; hidden?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};