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.

20 lines (19 loc) 553 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; this?: ConstructorOfATypedSvelteComponent | null | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type MaybeProps = typeof __propDef.props; export type MaybeEvents = typeof __propDef.events; export type MaybeSlots = typeof __propDef.slots; export default class Maybe extends SvelteComponentTyped<MaybeProps, MaybeEvents, MaybeSlots> { } export {};