Merge pull request #2554 from zspitz/ExtensibleActiveXObject

Allows extending ActiveXObject with with specialized overloads returning...
This commit is contained in:
Mohamed Hegazy 2015-03-30 20:44:09 -07:00
commit de8eb7cdb4

View file

@ -4,7 +4,11 @@
/// Windows Script Host APIS
/////////////////////////////
declare var ActiveXObject: { new (s: string): any; };
interface ActiveXObject {
new (s: string): any;
}
declare var ActiveXObject: ActiveXObject;
interface ITextWriter {
Write(s: string): void;