You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/lib.d.ts
+154-4Lines changed: 154 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14223,19 +14223,169 @@ declare function importScripts(...urls: string[]): void;
14223
14223
/// Windows Script Host APIS
14224
14224
/////////////////////////////
14225
14225
14226
-
declare var ActiveXObject: { new (s: string): any; };
14226
+
14227
+
interface ActiveXObject {
14228
+
new (s: string): any;
14229
+
}
14230
+
declare var ActiveXObject: ActiveXObject;
14227
14231
14228
14232
interface ITextWriter {
14229
14233
Write(s: string): void;
14230
14234
WriteLine(s: string): void;
14231
14235
Close(): void;
14232
14236
}
14233
14237
14238
+
interface TextStreamBase {
14239
+
/**
14240
+
* The column number of the current character position in an input stream.
14241
+
*/
14242
+
Column: number;
14243
+
/**
14244
+
* The current line number in an input stream.
14245
+
*/
14246
+
Line: number;
14247
+
/**
14248
+
* Closes a text stream.
14249
+
* It is not necessary to close standard streams; they close automatically when the process ends. If you close a standard stream, be aware that any other pointers to that standard stream become invalid.
Copy file name to clipboardExpand all lines: bin/lib.es6.d.ts
+154-4Lines changed: 154 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -17205,19 +17205,169 @@ declare function importScripts(...urls: string[]): void;
17205
17205
/// Windows Script Host APIS
17206
17206
/////////////////////////////
17207
17207
17208
-
declare var ActiveXObject: { new (s: string): any; };
17208
+
17209
+
interface ActiveXObject {
17210
+
new (s: string): any;
17211
+
}
17212
+
declare var ActiveXObject: ActiveXObject;
17209
17213
17210
17214
interface ITextWriter {
17211
17215
Write(s: string): void;
17212
17216
WriteLine(s: string): void;
17213
17217
Close(): void;
17214
17218
}
17215
17219
17220
+
interface TextStreamBase {
17221
+
/**
17222
+
* The column number of the current character position in an input stream.
17223
+
*/
17224
+
Column: number;
17225
+
/**
17226
+
* The current line number in an input stream.
17227
+
*/
17228
+
Line: number;
17229
+
/**
17230
+
* Closes a text stream.
17231
+
* It is not necessary to close standard streams; they close automatically when the process ends. If you close a standard stream, be aware that any other pointers to that standard stream become invalid.
0 commit comments