svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
25 lines (24 loc) • 662 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
title?: string | string[] | null;
subheading?: string | string[] | null;
loading?: boolean | null;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
header: {};
default: {};
contents: {};
actions: {};
};
};
export type CardProps = typeof __propDef.props;
export type CardEvents = typeof __propDef.events;
export type CardSlots = typeof __propDef.slots;
export default class Card extends SvelteComponentTyped<CardProps, CardEvents, CardSlots> {
}
export {};