UNPKG

427 BTypeScriptView Raw
1/**
2 * @author: JP Lew (jp@cto.ai)
3 * @date: Friday, 10th May 2019 12:10:47 pm
4 * @lastModifiedBy: JP Lew (jp@cto.ai)
5 * @lastModifiedTime: Thursday, 6th June 2019 6:28:12 pm
6 * @copyright (c) 2019 CTO.ai
7 */
8/// <reference types="node" />
9import { ChildProcess } from 'child_process';
10import { ChildProcessError } from '../types';
11export declare function onExit(childProcess: ChildProcess): Promise<void | ChildProcessError>;