Skip to content

Commit

Permalink
Allow readonly Stringifiable[] in StringifiableRecord (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpict committed Nov 5, 2020
1 parent 98dabaa commit 71d84b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -343,7 +343,7 @@ export type Stringifiable = string | boolean | number | null | undefined;

export type StringifiableRecord = Record<
string,
Stringifiable | Stringifiable[]
Stringifiable | readonly Stringifiable[]
>;

/**
Expand Down

0 comments on commit 71d84b7

Please sign in to comment.