UNPKG

@amplitude/ampli

Version:

Amplitude CLI

21 lines (20 loc) 506 B
export declare type OutputStream = { toString: () => string; }; export declare type ExecSyncErrorType = { pid: number; status: number; message: string; stderr?: string; stdout?: string; output: any[]; }; export default class ExecSyncError extends Error implements ExecSyncErrorType { pid: number; status: number; message: string; stderr?: string; stdout?: string; output: any[]; constructor(message?: string, options?: Partial<ExecSyncErrorType>); }