Search response that includes both matches and pagination info.

export interface MangaSearchResponse {
matches: MangaMatch[];
pageInfo?: PageInfo;
}
interface MangaSearchResponse {
    matches: MangaMatch[];
    pageInfo?: PageInfo;
}

Properties

Properties

matches: MangaMatch[]
pageInfo?: PageInfo