IOweb/node_modules/clsx/clsx.d.mts
2026-07-03 15:07:38 -05:00

6 lines
278 B
TypeScript

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;