|
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:
337 bytes
|
| Line | |
|---|
| 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;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.