securityos/node_modules/clsx/clsx.d.ts

7 lines
277 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
export type ClassValue = ClassArray | ClassDictionary | string | number | null | boolean | undefined;
export type ClassDictionary = Record<string, any>;
export type ClassArray = ClassValue[];
export declare function clsx(...inputs: ClassValue[]): string;
export default clsx;