Interface ApiErrorResponse

interface ApiErrorResponse {
    error: string;
    message?: string;
    status: "error";
}

Properties

Properties

error: string
message?: string
status: "error"