File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tests/baselines/reference Expand file tree Collapse file tree 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;
139139declare let x3 : number ;
140140declare let x4 : {
141141 toString : void ;
142- valueOf : void ;
143142 toFixed : void ;
144143 toExponential : void ;
145144 toPrecision : void ;
145+ valueOf : void ;
146146 toLocaleString : void ;
147147} ;
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ let x3 = f3();
165165>f3 : <T1 extends number>() => { [P in keyof T1]: void; }
166166
167167let 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; }
170170>f4 : <T1 extends Number>() => { [P in keyof T1]: void; }
171171
You can’t perform that action at this time.
0 commit comments