Skip to content

Commit

Permalink
Merge pull request #234 from remcohaszing/fix-argument-types
Browse files Browse the repository at this point in the history
Fix Mapping type unrelated to recursive Value type
  • Loading branch information
dcousens committed Apr 2, 2021
2 parents 560cc18 + eed5f71 commit ee5a710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -9,7 +9,7 @@
// Marvin Hagemeister <https://github.com/marvinhagemeister>

export type Value = string | number | boolean | undefined | null;
export type Mapping = { [key: string]: Value };
export type Mapping = { [key: string]: any };
export type Argument = Value | Mapping | Argument[];

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

0 comments on commit ee5a710

Please sign in to comment.