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;} Copy
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;}
Represents the search response from MangaDex API.
Source