added missing property to child_process (#10997)

added missing property to child_process
This commit is contained in:
Nick Zelei
2016-09-06 10:26:30 -05:00
committed by Masahiro Wakame
parent 5bf030ac72
commit 03f3ca4333
5 changed files with 5 additions and 0 deletions

1
node/node-0.10.d.ts vendored
View File

@@ -688,6 +688,7 @@ declare module "child_process" {
pid: number;
kill(signal?: string): void;
send(message: any, sendHandle: any): void;
connected: boolean;
disconnect(): void;
}

1
node/node-0.11.d.ts vendored
View File

@@ -611,6 +611,7 @@ declare module "child_process" {
pid: number;
kill(signal?: string): void;
send(message: any, sendHandle: any): void;
connected: boolean;
disconnect(): void;
}

1
node/node-0.12.d.ts vendored
View File

@@ -829,6 +829,7 @@ declare module "child_process" {
pid: number;
kill(signal?: string): void;
send(message: any, sendHandle?: any): void;
connected: boolean;
disconnect(): void;
unref(): void;
}

View File

@@ -545,6 +545,7 @@ declare module "child_process" {
pid: number;
kill(signal?: string): void;
send(message: any, sendHandle: any): void;
connected: boolean;
disconnect(): void;
}

1
node/node-4.d.ts vendored
View File

@@ -1036,6 +1036,7 @@ declare module "child_process" {
pid: number;
kill(signal?: string): void;
send(message: any, sendHandle?: any): void;
connected: boolean;
disconnect(): void;
unref(): void;
}