UNPKG

@zoop-svelte/svelte-components

Version:

Zoop UI component library built with Svelte 5, TypeScript, and Tailwind CSS

12 lines (11 loc) 375 B
import { type ClassValue } from "clsx"; import type { TransitionConfig } from "svelte/transition"; export declare function cn(...inputs: ClassValue[]): string; type FlyAndScaleParams = { y?: number; x?: number; start?: number; duration?: number; }; export declare const flyAndScale: (node: Element, params?: FlyAndScaleParams) => TransitionConfig; export {};