agnostic-svelte
Version:
AgnosticUI (svelte)
50 lines (49 loc) • 1.21 kB
TypeScript
/** @typedef {typeof __propDef.props} CardProps */
/** @typedef {typeof __propDef.events} CardEvents */
/** @typedef {typeof __propDef.slots} CardSlots */
export default class Card extends SvelteComponentTyped<{
isRounded?: boolean;
type?: string;
isSkinned?: boolean;
css?: string;
isAnimated?: boolean;
isStacked?: boolean;
isShadow?: boolean;
isBorder?: boolean;
}, {
click: MouseEvent;
focus: FocusEvent;
blur: FocusEvent;
} & {
[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: {
isRounded?: boolean;
type?: string;
isSkinned?: boolean;
css?: string;
isAnimated?: boolean;
isStacked?: boolean;
isShadow?: boolean;
isBorder?: boolean;
};
events: {
click: MouseEvent;
focus: FocusEvent;
blur: FocusEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};