HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/@oclif/errors/lib/errors/cli.d.ts
import { PrettyPrintableError } from './pretty-print';
/**
 * properties specific to internal oclif error handling
 */
export interface OclifError {
    oclif: {
        exit?: number | false;
    };
}
export declare function addOclifExitCode(error: Record<string, any>, options?: {
    exit?: number | false;
}): OclifError;
export declare class CLIError extends Error implements OclifError {
    oclif: OclifError['oclif'];
    code?: string;
    constructor(error: string | Error, options?: {
        exit?: number | false;
    } & PrettyPrintableError);
    get stack(): string;
    /**
     * @deprecated `render` Errors display should be handled by display function, like pretty-print
     * @return {string} returns a string representing the dispay of the error
     */
    render(): string;
    get bang(): string;
}
export declare namespace CLIError {
    class Warn extends CLIError {
        constructor(err: string | Error);
        get bang(): string;
    }
}