UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

32 lines (31 loc) 799 B
/** @typedef {typeof __propDef.props} HcellProps */ /** @typedef {typeof __propDef.events} HcellEvents */ /** @typedef {typeof __propDef.slots} HcellSlots */ export default class Hcell extends SvelteComponentTyped<{ style: any; sorted: any; class?: string; }, { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type HcellProps = typeof __propDef.props; export type HcellEvents = typeof __propDef.events; export type HcellSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; sorted: any; class?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};