(child: ChildProcessWithoutNullStreams, msg: object)
| 69 | } |
| 70 | |
| 71 | function send(child: ChildProcessWithoutNullStreams, msg: object): void { |
| 72 | child.stdin.write(JSON.stringify(msg) + '\n'); |
| 73 | } |
| 74 | |
| 75 | const CLIENT_INFO = { name: 'test', version: '0.0.0' }; |
| 76 |