Merge pull request #609 from karlw4/master

NODE: missing global functions setImmediate and clearImmediate
This commit is contained in:
Boris Yankov
2013-06-16 17:13:56 -07:00
+2
View File
@@ -30,6 +30,8 @@ declare function setTimeout(callback: () => void , ms: number): any;
declare function clearTimeout(timeoutId: any);
declare function setInterval(callback: () => void , ms: number): any;
declare function clearInterval(intervalId: any);
declare function setImmediate(callback: () => void ): any;
declare function clearImmediate(immediateId: any);
declare var require: {
(id: string): any;