UNPKG

ipc-network

Version:

Inter-process communication network, allows multiple node process to exchange messages using unix-socket.

9 lines (8 loc) 207 B
/// <reference types="node" /> export interface JobItems { [key: string]: { resolve: (value?: any) => void; reject: (value?: any) => void; timeoutTimer?: NodeJS.Timeout; }; }