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