AmbiguousError: SimplifiedError | string | {
    error?: AmbiguousError;
    message?: string;
    name?: string;
    response?: {
        error?: string;
    };
    stack?: string;
} | Error

Represents an error when we don't really know how it is structured.

Use extractError to turn this into a SimplifiedError representation.

Type declaration

  • Optional error?: AmbiguousError
  • Optional message?: string
  • Optional name?: string
  • Optional response?: {
        error?: string;
    }
    • Optional error?: string
  • Optional stack?: string

Generated using TypeDoc