UNPKG

@winglet/style-utils

Version:

Comprehensive CSS and style management utilities including className manipulation, CSS compression, and universal style manager for TypeScript projects

6 lines (5 loc) 204 B
export type ClassObject = { [key: string]: ClassValue; }; export type ClassArray = Array<ClassValue>; export type ClassValue = string | number | boolean | undefined | null | ClassArray | ClassObject;