svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
30 lines (29 loc) • 765 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
initial?: any;
};
events: {
change: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
state: any;
draft: any;
commit: () => boolean;
revert: () => void;
revertAll: () => void;
undo: () => void;
refresh: () => void;
current: any;
};
};
};
export type FormProps = typeof __propDef.props;
export type FormEvents = typeof __propDef.events;
export type FormSlots = typeof __propDef.slots;
export default class Form extends SvelteComponentTyped<FormProps, FormEvents, FormSlots> {
}
export {};