source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/rpc/rpc-ipc/ProcessLike.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 434 bytes
Line 
1/**
2 * This interface describes Node.js process that is potentially able to communicate over IPC channel
3 */
4interface ProcessLike {
5 pid?: string | number;
6 send?: (message: any, sendHandle?: any, options?: any, callback?: (error: any) => void) => boolean;
7 on: (event: any, listener: any) => any;
8 off: (event: any, listener?: any) => any;
9 connected?: boolean;
10 disconnect?: () => void;
11}
12export { ProcessLike };
Note: See TracBrowser for help on using the repository browser.