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.

27 lines (26 loc) 764 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; blur?: number | undefined | undefined; alphaPixel?: number | undefined; alphaShift?: number | undefined; composite?: string | number | null | undefined; classes?: { root?: string; svg?: string; } | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type GooeyProps = typeof __propDef.props; export type GooeyEvents = typeof __propDef.events; export type GooeySlots = typeof __propDef.slots; export default class Gooey extends SvelteComponentTyped<GooeyProps, GooeyEvents, GooeySlots> { } export {};