interface ApiError {
    error?: string;
    detail?: string;
    message?: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

error?: string
detail?: string
message?: string