summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.scripthost.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.scripthost.d.ts')
-rw-r--r--cli/tsc/dts/lib.scripthost.d.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/tsc/dts/lib.scripthost.d.ts b/cli/tsc/dts/lib.scripthost.d.ts
index 14cebb531..b2364b58f 100644
--- a/cli/tsc/dts/lib.scripthost.d.ts
+++ b/cli/tsc/dts/lib.scripthost.d.ts
@@ -16,13 +16,10 @@ and limitations under the License.
/// <reference no-default-lib="true"/>
-
-
/////////////////////////////
/// Windows Script Host APIS
/////////////////////////////
-
interface ActiveXObject {
new (s: string): any;
}
@@ -262,7 +259,7 @@ interface Enumerator<T = any> {
interface EnumeratorConstructor {
new <T = any>(safearray: SafeArray<T>): Enumerator<T>;
- new <T = any>(collection: { Item(index: any): T }): Enumerator<T>;
+ new <T = any>(collection: { Item(index: any): T; }): Enumerator<T>;
new <T = any>(collection: any): Enumerator<T>;
}