source: node_modules/clsx/clsx.d.mts@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 278 bytes
RevLine 
[a762898]1export type ClassValue = ClassArray | ClassDictionary | string | number | bigint | null | boolean | undefined;
2export type ClassDictionary = Record<string, any>;
3export type ClassArray = ClassValue[];
4
5export function clsx(...inputs: ClassValue[]): string;
6export default clsx;
Note: See TracBrowser for help on using the repository browser.