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) • 513 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type TogglePanelProps = typeof __propDef.props;
export type TogglePanelEvents = typeof __propDef.events;
export type TogglePanelSlots = typeof __propDef.slots;
export default class TogglePanel extends SvelteComponentTyped<TogglePanelProps, TogglePanelEvents, TogglePanelSlots> {
}
export {};