Interface BaseApiResponse

interface BaseApiResponse {
    error?: string;
    message?: string;
    status: string;
}

Hierarchy (View Summary)

Properties

error?: string
message?: string
status: string