UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

58 lines (57 loc) 1.45 kB
/** @typedef {typeof __propDef.props} RowProps */ /** @typedef {typeof __propDef.events} RowEvents */ /** @typedef {typeof __propDef.slots} RowSlots */ export default class Row extends SvelteComponentTyped<{ style: any; color: any; wide: any; marked: any; textAlign: any; verticalAlign: any; class?: string; disabled?: boolean; active?: boolean; error?: boolean; warning?: boolean; positive?: boolean; negative?: boolean; selectable?: boolean; collapsing?: boolean; singleLine?: boolean; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type RowProps = typeof __propDef.props; export type RowEvents = typeof __propDef.events; export type RowSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; color: any; wide: any; marked: any; textAlign: any; verticalAlign: any; class?: string; disabled?: boolean; active?: boolean; error?: boolean; warning?: boolean; positive?: boolean; negative?: boolean; selectable?: boolean; collapsing?: boolean; singleLine?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};