svantic
Version:
A set of Fomantic-UI components for Svelte framework
42 lines (41 loc) • 1.04 kB
TypeScript
/** @typedef {typeof __propDef.props} ColumnProps */
/** @typedef {typeof __propDef.events} ColumnEvents */
/** @typedef {typeof __propDef.slots} ColumnSlots */
export default class Column extends SvelteComponentTyped<{
aligned: any;
floated: any;
wide: any;
class?: string;
style?: {};
color?: string;
doubling?: boolean;
visibility?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type ColumnProps = typeof __propDef.props;
export type ColumnEvents = typeof __propDef.events;
export type ColumnSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
aligned: any;
floated: any;
wide: any;
class?: string;
style?: {};
color?: string;
doubling?: boolean;
visibility?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};