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.
22 lines (21 loc) • 674 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { TransitionConfig } from 'svelte/transition';
declare const __propDef: {
props: {
center?: boolean;
transition?: [(node: Element, options: any) => TransitionConfig, object];
class?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type OverlayProps = typeof __propDef.props;
export type OverlayEvents = typeof __propDef.events;
export type OverlaySlots = typeof __propDef.slots;
export default class Overlay extends SvelteComponentTyped<OverlayProps, OverlayEvents, OverlaySlots> {
}
export {};