svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
25 lines (24 loc) • 678 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
vertical?: boolean | undefined;
horizontal?: boolean | undefined;
stack?: boolean | undefined;
template?: string | undefined;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type StackProps = typeof __propDef.props;
export type StackEvents = typeof __propDef.events;
export type StackSlots = typeof __propDef.slots;
export default class Stack extends SvelteComponentTyped<StackProps, StackEvents, StackSlots> {
}
export {};