Files

7 lines
278 B
TypeScript
Raw Permalink Normal View History

2026-03-22 20:00:13 +00:00
export type ClassValue = ClassArray | ClassDictionary | string | number | bigint | null | boolean | undefined;
export type ClassDictionary = Record<string, any>;
export type ClassArray = ClassValue[];
export function clsx(...inputs: ClassValue[]): string;
export default clsx;