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.
30 lines (29 loc) • 1.08 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
height: string | number;
unmount?: boolean | undefined;
class?: string | undefined | undefined;
offset?: {
top?: string;
bottom?: string;
left?: string;
right?: string;
} | undefined;
};
events: {
intersecting: Event | KeyboardEvent | UIEvent | MouseEvent | FocusEvent | AnimationEvent | InputEvent | CompositionEvent | ClipboardEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | ProgressEvent<EventTarget> | SecurityPolicyViolationEvent | SubmitEvent | TouchEvent | TransitionEvent | WheelEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type LazyProps = typeof __propDef.props;
export type LazyEvents = typeof __propDef.events;
export type LazySlots = typeof __propDef.slots;
export default class Lazy extends SvelteComponentTyped<LazyProps, LazyEvents, LazySlots> {
}
export {};