File tree 2 files changed +42
-7
lines changed
2 files changed +42
-7
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,15 @@ import type {OmitIndexSignature} from './omit-index-signature';
2
2
import type { PickIndexSignature } from './pick-index-signature' ;
3
3
import type { EnforceOptional } from './enforce-optional' ;
4
4
5
+ // Merges two objects without worrying about index signatures or optional keys.
6
+ type SimpleMerge < Destination , Source > = {
7
+ [ Key in keyof Destination | keyof Source ] : Key extends keyof Source
8
+ ? Source [ Key ]
9
+ : Key extends keyof Destination
10
+ ? Destination [ Key ]
11
+ : never ;
12
+ } ;
13
+
5
14
/**
6
15
Merge two types into a new type. Keys of the second type overrides keys of the first type.
7
16
@@ -36,10 +45,6 @@ export type FooBar = Merge<Foo, Bar>;
36
45
37
46
@category Object
38
47
*/
39
- export type Merge < Destination , Source > = EnforceOptional < {
40
- [ Key in keyof OmitIndexSignature < Destination > | keyof OmitIndexSignature < Source > ] : Key extends keyof Source
41
- ? Source [ Key ]
42
- : Key extends keyof Destination
43
- ? Destination [ Key ]
44
- : never ;
45
- } & PickIndexSignature < Destination > & PickIndexSignature < Source > > ;
48
+ export type Merge < Destination , Source > = EnforceOptional <
49
+ SimpleMerge < PickIndexSignature < Destination > , PickIndexSignature < Source > >
50
+ & SimpleMerge < OmitIndexSignature < Destination > , OmitIndexSignature < Source > > > ;
Original file line number Diff line number Diff line change @@ -104,3 +104,33 @@ expectType<{
104
104
f ?: number ;
105
105
g : undefined ;
106
106
} > ( fooBarWithOptionalKeys ) ;
107
+
108
+ // Checks that an indexed key type can be overwritten.
109
+ type FooWithIndexSignature = {
110
+ [ x : string ] : unknown ;
111
+ [ x : number ] : boolean ;
112
+ [ x : symbol ] : number ;
113
+ foo : boolean ;
114
+ fooBar : boolean ;
115
+ } ;
116
+
117
+ type BarWithIndexSignatureOverwrite = {
118
+ [ x : string ] : number | string | boolean ;
119
+ [ x : number ] : number | string ;
120
+ [ x : symbol ] : symbol ;
121
+ bar : string ;
122
+ fooBar : string ;
123
+ } ;
124
+
125
+ type FooBarWithIndexSignature = Merge < FooWithIndexSignature , BarWithIndexSignatureOverwrite > ;
126
+
127
+ declare const fooBarWithIndexSignature : FooBarWithIndexSignature ;
128
+
129
+ expectType < {
130
+ [ x : string ] : string | number | boolean ;
131
+ [ x : number ] : string | number ;
132
+ [ x : symbol ] : symbol ;
133
+ foo : boolean ;
134
+ bar : string ;
135
+ fooBar : string ;
136
+ } > ( fooBarWithIndexSignature ) ;
You can’t perform that action at this time.
0 commit comments