Skip to content

Commit 71d84b7

Browse files
authoredNov 5, 2020
Allow readonly Stringifiable[] in StringifiableRecord (#291)
1 parent 98dabaa commit 71d84b7

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
@@ -343,7 +343,7 @@ export type Stringifiable = string | boolean | number | null | undefined;
343343

344344
export type StringifiableRecord = Record<
345345
string,
346-
Stringifiable | Stringifiable[]
346+
Stringifiable | readonly Stringifiable[]
347347
>;
348348

349349
/**

0 commit comments

Comments
 (0)
Please sign in to comment.