mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
7 lines
269 B
TypeScript
7 lines
269 B
TypeScript
export type ClassValue = ClassArray | ClassDictionary | string | number | null | boolean | undefined;
|
|
export type ClassDictionary = Record<string, any>;
|
|
export type ClassArray = ClassValue[];
|
|
|
|
export function clsx(...inputs: ClassValue[]): string;
|
|
export default clsx;
|