node.d.ts: child_process#send() 2nd argument is optional

This commit is contained in:
Yuki KAN
2015-02-28 09:34:04 +09:00
parent 24991f9398
commit 819aa8bc55

2
node/node.d.ts vendored
View File

@@ -609,7 +609,7 @@ declare module "child_process" {
stderr: stream.Readable;
pid: number;
kill(signal?: string): void;
send(message: any, sendHandle: any): void;
send(message: any, sendHandle?: any): void;
disconnect(): void;
}