Interface AuthError

An event that represents an authorization error.

interface AuthError {
    message: string;
    name: string;
    stack?: string;
    status: 300 | 400 | 500;
}

Hierarchy (View Summary)

Properties

message: string
name: string
stack?: string
status: 300 | 400 | 500