interface ErrorObject {
    code: null | string;
    message: string;
    param: null | string;
    type: string;
}

Properties

Properties

code: null | string
message: string
param: null | string
type: string