UNPKG

398 BTypeScriptView Raw
1/**
2 * @author: JP Lew (jp@cto.ai)
3 * @date: Wednesday, 8th May 2019 7:32:02 pm
4 * @lastModifiedBy: JP Lew (jp@cto.ai)
5 * @lastModifiedTime: Thursday, 16th May 2019 2:53:05 pm
6 * @copyright (c) 2019 CTO.ai
7 */
8export interface ChildProcessError {
9 code: number;
10 signal: string;
11}
12export interface WorkflowPipelineError {
13 exitResponse: ChildProcessError | void;
14 runCommand: string;
15}