Interface ErrorLike

interface ErrorLike {
    cause?: any;
    message: string;
    name: string;
    stack?: string;
}

Hierarchy (View Summary)

Properties

cause?: any
message: string
name: string
stack?: string