Skip to content

Commit 9c9fd61

Browse files
committed
Accept new baselines
1 parent d58b500 commit 9c9fd61

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

testdata/baselines/reference/submodule/compiler/jsFileAlternativeUseOfOverloadTag.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ const example3 = {
106106

107107

108108
//// [jsFileAlternativeUseOfOverloadTag.d.ts]
109-
declare function Example1(value: any): any;
110109
declare const example1: {
111110
/**
112111
* @overload Example1(value)
@@ -115,8 +114,6 @@ declare const example1: {
115114
*/
116115
constructor: (value: any, options: any) => void;
117116
};
118-
declare function Example2(value: any, secretAccessKey: any, sessionToken: any): any;
119-
declare function Example2(): any;
120117
declare const example2: {
121118
/**
122119
* Example 2
@@ -138,7 +135,6 @@ declare const example2: {
138135
*/
139136
constructor: () => void;
140137
};
141-
declare function evaluate(): any;
142138
type callback = (error: any, result: any) => any;
143139
declare const example3: {
144140
/**

testdata/baselines/reference/submodule/compiler/jsFileAlternativeUseOfOverloadTag.js.diff

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
//// [jsFileAlternativeUseOfOverloadTag.d.ts]
77
-declare namespace example1 {
8-
+declare function Example1(value: any): any;
98
+declare const example1: {
109
/**
1110
* @overload Example1(value)
@@ -58,8 +57,6 @@
5857
-declare namespace example3 {
5958
+ constructor: (value: any, options: any) => void;
6059
+};
61-
+declare function Example2(value: any, secretAccessKey: any, sessionToken: any): any;
62-
+declare function Example2(): any;
6360
+declare const example2: {
6461
+ /**
6562
+ * Example 2
@@ -81,13 +78,12 @@
8178
+ */
8279
+ constructor: () => void;
8380
+};
84-
+declare function evaluate(): any;
8581
+type callback = (error: any, result: any) => any;
8682
+declare const example3: {
8783
/**
8884
* @overload evaluate(options = {}, [callback])
8985
* Evaluate something
90-
@@= skipped -63, +48 lines =@@
86+
@@= skipped -63, +44 lines =@@
9187
* @param result [String]
9288
* @see callback
9389
*/

0 commit comments

Comments
 (0)