UNPKG

tedi

Version:

Express wrappper written in typescript with dependency injection capabilities

11 lines (10 loc) 334 B
import { Constructor } from "./utils"; export declare const NestedError: Constructor<Error>; export declare class TediError extends NestedError { constructor(msg: string, error: any); readonly name: string; readonly messageStack: string; getRootCause(): any; search(errorType: any): any; toString(): string; }