Skip to content

Commit b48a281

Browse files
author
Andy Hanson
committed
Update baselines
1 parent 0d21c24 commit b48a281

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/baselines/reference/mappedTypes1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ declare let x2: string;
139139
declare let x3: number;
140140
declare let x4: {
141141
toString: void;
142-
valueOf: void;
143142
toFixed: void;
144143
toExponential: void;
145144
toPrecision: void;
145+
valueOf: void;
146146
toLocaleString: void;
147147
};

tests/baselines/reference/mappedTypes1.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ let x3 = f3();
165165
>f3 : <T1 extends number>() => { [P in keyof T1]: void; }
166166

167167
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; }
170170
>f4 : <T1 extends Number>() => { [P in keyof T1]: void; }
171171

0 commit comments

Comments
 (0)