File tree 2 files changed +3
-3
lines changed
tests/baselines/reference
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -139,9 +139,9 @@ declare let x2: string;
139
139
declare let x3 : number ;
140
140
declare let x4 : {
141
141
toString : void ;
142
- valueOf : void ;
143
142
toFixed : void ;
144
143
toExponential : void ;
145
144
toPrecision : void ;
145
+ valueOf : void ;
146
146
toLocaleString : void ;
147
147
} ;
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ let x3 = f3();
165
165
>f3 : <T1 extends number>() => { [P in keyof T1]: void; }
166
166
167
167
let x4 = f4();
168
- >x4 : { toString: void; valueOf : void; toFixed : void; toExponential : void; toPrecision : void; toLocaleString: void; }
169
- >f4() : { toString: void; valueOf : void; toFixed : void; toExponential : void; toPrecision : void; toLocaleString: void; }
168
+ >x4 : { toString: void; toFixed : void; toExponential : void; toPrecision : void; valueOf : void; toLocaleString: void; }
169
+ >f4() : { toString: void; toFixed : void; toExponential : void; toPrecision : void; valueOf : void; toLocaleString: void; }
170
170
>f4 : <T1 extends Number>() => { [P in keyof T1]: void; }
171
171
You can’t perform that action at this time.
0 commit comments