UNPKG

238 BTypeScriptView Raw
1import { CLIError, OclifError } from './cli';
2export declare class ExitError extends CLIError implements OclifError {
3 oclif: {
4 exit: number;
5 };
6 code: string;
7 constructor(exitCode?: number);
8 render(): string;
9}