UNPKG

flibusta

Version:

Unofficial Flibusta API based on website search engine. If you like to read books - buy

11 lines (9 loc) 230 B
import { Nullable } from './generals'; export type PaginatedSearchResult<T> = { items: T; currentPage: number; totalCountItems: Nullable<number>; totalPages: number; hasPreviousPage: boolean; hasNextPage: boolean; };