NITISHRG15102007's picture
Finalize submission checks and long inference output format
fea495a verified
Raw
History Blame Contribute Delete
278 Bytes
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;