Skip to content

Commit 7d492c8

Browse files
joealdensindresorhus
andauthoredOct 9, 2022
SetNonNullable: Make it possible to apply it to all keys (#482)
Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
1 parent fedbc44 commit 7d492c8

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed
 

‎source/set-non-nullable.d.ts

+14-5
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,40 @@ import type {Except} from './except';
22
import type {Simplify} from './simplify';
33

44
/**
5-
Create a type that makes the given keys non-nullable. The remaining keys are kept as is.
5+
Create a type that makes the given keys non-nullable, where the remaining keys are kept as is.
66
7-
Use-case: You want to define a single model where the only thing that changes is whether or not some of the keys are non-nullable.
7+
If no keys are given, all keys will be made non-nullable.
8+
9+
Use-case: You want to define a single model where the only thing that changes is whether or not some or all of the keys are non-nullable.
810
911
@example
1012
```
1113
import type {SetNonNullable} from 'type-fest';
1214
1315
type Foo = {
14-
a: number;
16+
a: number | null;
1517
b: string | undefined;
1618
c?: boolean | null;
1719
}
1820
1921
type SomeNonNullable = SetNonNullable<Foo, 'b' | 'c'>;
2022
// type SomeNonNullable = {
21-
// a: number;
23+
// a: number | null;
24+
// b: string; // Can no longer be undefined.
25+
// c?: boolean; // Can no longer be null, but is still optional.
26+
// }
27+
28+
type AllNonNullable = SetNonNullable<Foo>;
29+
// type AllNonNullable = {
30+
// a: number; // Can no longer be null.
2231
// b: string; // Can no longer be undefined.
2332
// c?: boolean; // Can no longer be null, but is still optional.
2433
// }
2534
```
2635
2736
@category Object
2837
*/
29-
export type SetNonNullable<BaseType, Keys extends keyof BaseType> =
38+
export type SetNonNullable<BaseType, Keys extends keyof BaseType = keyof BaseType> =
3039
Simplify<
3140
// Pick just the keys that are readonly from the base type.
3241
Except<BaseType, Keys> &

0 commit comments

Comments
 (0)
Please sign in to comment.