@amplitude/ampli
Version:
Amplitude CLI
21 lines (20 loc) • 506 B
TypeScript
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>);
}