UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

66 lines (65 loc) 1.69 kB
/** @typedef {typeof __propDef.props} TableProps */ /** @typedef {typeof __propDef.events} TableEvents */ /** @typedef {typeof __propDef.slots} TableSlots */ export default class Table extends SvelteComponentTyped<{ wide: any; column: any; fixed?: boolean; class?: string; inverted?: boolean; style?: {}; celled?: boolean; padded?: boolean; compact?: boolean; basic?: boolean; unstackable?: boolean; very?: boolean; selectable?: boolean; collapsing?: boolean; singleLine?: boolean; definition?: boolean; structured?: boolean; line?: boolean; striped?: boolean; sortable?: boolean; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type TableProps = typeof __propDef.props; export type TableEvents = typeof __propDef.events; export type TableSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { wide: any; column: any; fixed?: boolean; class?: string; inverted?: boolean; style?: {}; celled?: boolean; padded?: boolean; compact?: boolean; basic?: boolean; unstackable?: boolean; very?: boolean; selectable?: boolean; collapsing?: boolean; singleLine?: boolean; definition?: boolean; structured?: boolean; line?: boolean; striped?: boolean; sortable?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};