Represents the search response from MangaDex API.

export interface MangaDexSearchResponse {
result: string;
response: string;
data: Array<{
id: string;
type: string;
attributes: MangaDexAttributes;
relationships: Array<{
id: string;
type: string;
attributes?: MangaDexAttributes;
}>;
}>;
limit: number;
offset: number;
total: number;
}
interface MangaDexSearchResponse {
    result: string;
    response: string;
    data: {
        id: string;
        type: string;
        attributes: MangaDexAttributes;
        relationships: {
            id: string;
            type: string;
            attributes?: MangaDexAttributes;
        }[];
    }[];
    limit: number;
    offset: number;
    total: number;
}

Properties

result: string
response: string
data: {
    id: string;
    type: string;
    attributes: MangaDexAttributes;
    relationships: {
        id: string;
        type: string;
        attributes?: MangaDexAttributes;
    }[];
}[]
limit: number
offset: number
total: number