errorf.d.ts 185 B

123456789101112
  1. /**
  2. * Errorf.
  3. */
  4. export declare class Errorf extends Error {
  5. /**
  6. * Constructor.
  7. *
  8. * @param pattern
  9. * @param args
  10. */
  11. constructor(pattern: string, ...args: any[]);
  12. }