6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
export interface PaginationResult<R> extends Array<R> {
|
|
next(): Promise<PaginationResult<R>>;
|
|
totalResults: null | number;
|
|
done: boolean;
|
|
}
|