Skip to content

Commit 9221ab2

Browse files
committed
Merge pull request #4 from zspitz/WScriptFullAPI
Missing ;
2 parents 843adf7 + b06e19b commit 9221ab2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/scriptHost.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ interface ITextReader extends ITextStreamBase {
8282

8383
declare var WScript: {
8484
/**
85-
* Outputs text to either a message box (under WScript.exe) or the command console window followed by a newline (under CScript.ext).
86-
*/
85+
* Outputs text to either a message box (under WScript.exe) or the command console window followed by a newline (under CScript.ext).
86+
*/
8787
Echo(s: any): void;
8888
/**
8989
* Exposes the write-only error output stream for the current script.
@@ -163,4 +163,4 @@ declare var WScript: {
163163
* @param intTime Interval (in milliseconds) to suspend script execution.
164164
*/
165165
Sleep(intTime: number): void;
166-
}
166+
};

0 commit comments

Comments
 (0)