UNPKG

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.

31 lines (30 loc) 862 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; list?: "type" | "parent" | "group" | undefined; disabled?: boolean | undefined; classes?: { root?: string; toggle?: string; } | undefined; }; events: { change: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { trigger: { slot: string; }; actions: {}; default: {}; }; }; export type ExpansionPanelProps = typeof __propDef.props; export type ExpansionPanelEvents = typeof __propDef.events; export type ExpansionPanelSlots = typeof __propDef.slots; export default class ExpansionPanel extends SvelteComponentTyped<ExpansionPanelProps, ExpansionPanelEvents, ExpansionPanelSlots> { } export {};