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.
15 lines (14 loc) • 473 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ThemeInitProps = typeof __propDef.props;
export type ThemeInitEvents = typeof __propDef.events;
export type ThemeInitSlots = typeof __propDef.slots;
export default class ThemeInit extends SvelteComponentTyped<ThemeInitProps, ThemeInitEvents, ThemeInitSlots> {
}
export {};