svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
17 lines (16 loc) • 494 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DividerDotProps = typeof __propDef.props;
export type DividerDotEvents = typeof __propDef.events;
export type DividerDotSlots = typeof __propDef.slots;
export default class DividerDot extends SvelteComponentTyped<DividerDotProps, DividerDotEvents, DividerDotSlots> {
}
export {};