mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-03-29 08:58:23 +08:00
added missing property to child_process (#10997)
added missing property to child_process
This commit is contained in:
committed by
Masahiro Wakame
parent
5bf030ac72
commit
03f3ca4333
1
node/node-0.10.d.ts
vendored
1
node/node-0.10.d.ts
vendored
@@ -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
1
node/node-0.11.d.ts
vendored
@@ -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
1
node/node-0.12.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
1
node/node-0.8.8.d.ts
vendored
1
node/node-0.8.8.d.ts
vendored
@@ -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
1
node/node-4.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user