Skip to content

Commit

Permalink
Merge pull request #4 from zspitz/WScriptFullAPI
Browse files Browse the repository at this point in the history
Missing ;
  • Loading branch information
zspitz committed Mar 31, 2015
2 parents 843adf7 + b06e19b commit 9221ab2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/scriptHost.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ interface ITextReader extends ITextStreamBase {

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

0 comments on commit 9221ab2

Please sign in to comment.