svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
17 lines (16 loc) • 492 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
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 {};