We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d6f4f1 + f41d5eb commit 2e87b50Copy full SHA for 2e87b50
index.d.ts
@@ -10,6 +10,7 @@
10
11
export type Value = string | number | boolean | undefined | null;
12
export type Mapping = { [key: string]: any };
13
-export type Argument = Value | Mapping | Argument[];
+interface ArgumentArray extends Array<Value | Mapping | ArgumentArray>{}
14
+export type Argument = Value | Mapping | ArgumentArray;
15
16
export default function classNames(...args: Argument[]): string;
0 commit comments