missing global functions setImmediate and clearImmediate,

see documentation at http://nodejs.org/api/timers.html
This commit is contained in:
karlw4 2013-06-15 14:51:05 +02:00
parent 564ee694b9
commit 63f3e198fe

2
node/node.d.ts vendored
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;