svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
22 lines (21 loc) • 555 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
initial?: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
value: any;
set: (newValue: any) => void;
};
};
};
export type StateProps = typeof __propDef.props;
export type StateEvents = typeof __propDef.events;
export type StateSlots = typeof __propDef.slots;
export default class State extends SvelteComponentTyped<StateProps, StateEvents, StateSlots> {
}
export {};