formatter.d.ts 212 B

123456
  1. export declare class FrameworkErrorFormater {
  2. protected static faqPrefix: string;
  3. private static faqPrefixEnv;
  4. static format(err: Error): string;
  5. static formatError<T extends Error>(err: T): T;
  6. }