svantic
Version:
A set of Fomantic-UI components for Svelte framework
58 lines (57 loc) • 1.43 kB
TypeScript
/** @typedef {typeof __propDef.props} CardProps */
/** @typedef {typeof __propDef.events} CardEvents */
/** @typedef {typeof __propDef.slots} CardSlots */
export default class Card extends SvelteComponentTyped<{
class: any;
style: any;
link?: string;
inverted?: boolean;
floated?: string;
color?: string;
horizontal?: boolean;
raised?: boolean;
type?: string;
column?: string;
stackable?: boolean;
fluid?: boolean;
doubling?: boolean;
centered?: boolean;
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type CardProps = typeof __propDef.props;
export type CardEvents = typeof __propDef.events;
export type CardSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class: any;
style: any;
link?: string;
inverted?: boolean;
floated?: string;
color?: string;
horizontal?: boolean;
raised?: boolean;
type?: string;
column?: string;
stackable?: boolean;
fluid?: boolean;
doubling?: boolean;
centered?: boolean;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};