export interface IErrorCode extends Error { details?: string; } export declare class ErrorCode extends Error { constructor(code: string, ...args: Array); tryCatchLog(codeTryCatch: string): ErrorCode; }