Response from manga search containing matches and pagination.

export interface MangaSearchResponse {
/** Array of manga matches with confidence scores */
matches: MangaMatch[];
/** Pagination information if available */
pageInfo?: PageInfo;
}
interface MangaSearchResponse {
    matches: MangaMatch[];
    pageInfo?: PageInfo;
}

Properties

Properties

matches: MangaMatch[]

Array of manga matches with confidence scores

pageInfo?: PageInfo

Pagination information if available