UNPKG

@cto.ai/ops

Version:

💻 CTO.ai Ops - The CLI built for Teams 🚀

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