ethers.js/packages/providers/src.ts/pagination.ts

9 lines
218 B
TypeScript
Raw Permalink Normal View History

2022-04-11 17:09:17 -04:00
export interface PaginationResult<R> extends Array<R> {
next(): Promise<PaginationResult<R>>;
// The total number of results available or null if unknown
totalResults: null | number;
done: boolean;
}