Merge pull request #4301 from lbguilherme/patch-2

node: Declare global.gc()
This commit is contained in:
Masahiro Wakame
2015-05-12 00:12:29 +09:00
+1
View File
@@ -252,6 +252,7 @@ declare module NodeJS {
setTimeout: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer;
undefined: typeof undefined;
unescape: (str: string) => string;
gc: () => void;
}
export interface Timer {