ethers.js/lib.commonjs/providers/pagination.d.ts
2023-02-02 22:04:33 -05:00

6 lines
152 B
TypeScript

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