1 | declare namespace clsx {
|
2 | type ClassValue = ClassArray | ClassDictionary | string | number | bigint | null | boolean | undefined;
|
3 | type ClassDictionary = Record<string, any>;
|
4 | type ClassArray = ClassValue[];
|
5 | function clsx(...inputs: ClassValue[]): string;
|
6 | }
|
7 |
|
8 | declare function clsx(...inputs: clsx.ClassValue[]): string;
|
9 |
|
10 | export = clsx;
|