Skip to content

Commit ee5a710

Browse files
authoredApr 2, 2021
Merge pull request #234 from remcohaszing/fix-argument-types
Fix Mapping type unrelated to recursive Value type
2 parents 560cc18 + eed5f71 commit ee5a710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// Marvin Hagemeister <https://github.com/marvinhagemeister>
1010

1111
export type Value = string | number | boolean | undefined | null;
12-
export type Mapping = { [key: string]: Value };
12+
export type Mapping = { [key: string]: any };
1313
export type Argument = Value | Mapping | Argument[];
1414

1515
export default function classNames(...args: Argument[]): string;

0 commit comments

Comments
 (0)
Please sign in to comment.