File tree 1 file changed +14
-5
lines changed
1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -2,31 +2,40 @@ import type {Except} from './except';
2
2
import type { Simplify } from './simplify' ;
3
3
4
4
/**
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.
6
6
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.
8
10
9
11
@example
10
12
```
11
13
import type {SetNonNullable} from 'type-fest';
12
14
13
15
type Foo = {
14
- a: number;
16
+ a: number | null ;
15
17
b: string | undefined;
16
18
c?: boolean | null;
17
19
}
18
20
19
21
type SomeNonNullable = SetNonNullable<Foo, 'b' | 'c'>;
20
22
// 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.
22
31
// b: string; // Can no longer be undefined.
23
32
// c?: boolean; // Can no longer be null, but is still optional.
24
33
// }
25
34
```
26
35
27
36
@category Object
28
37
*/
29
- export type SetNonNullable < BaseType , Keys extends keyof BaseType > =
38
+ export type SetNonNullable < BaseType , Keys extends keyof BaseType = keyof BaseType > =
30
39
Simplify <
31
40
// Pick just the keys that are readonly from the base type.
32
41
Except < BaseType , Keys > &
You can’t perform that action at this time.
0 commit comments