Skip to content

Commit

Permalink
run api-extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
vemoo committed Jul 30, 2022
1 parent 77fe51b commit 36e46f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reports/api-extractor.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export type DeepPartialSkipArrayKey<T> = T extends Date | FileList_2 | File_2 |
};

// @public (undocumented)
export type DeepRequired<T> = {
export type DeepRequired<T> = T extends Date | FileList | File | Blob ? T : {
[K in keyof T]-?: NonNullable<DeepRequired<T[K]>>;
};

Expand Down

0 comments on commit 36e46f4

Please sign in to comment.