SimplifiedError: {
    error: string | null | undefined;
    props?: {
        [key: string]: string | number | boolean;
    };
    stack?: string;
}

Represents an error and associated stack.

Type declaration

  • Readonly error: string | null | undefined

    A string representing the error that occurred. In some circumstances, this will match the stack property.

  • Optional Readonly props?: {
        [key: string]: string | number | boolean;
    }

    Additional properties that the source error had.

    • [key: string]: string | number | boolean
  • Optional Readonly stack?: string

    The error's stack, if it has one.

Generated using TypeDoc