UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

9 lines (8 loc) 235 B
import { type ClassValue } from 'clsx'; /** * Convert object to style string */ export declare function objectToString(styleObj: { [key: string]: string; }): string; export declare const cls: (...inputs: ClassValue[]) => string;