ethers.js/lib.commonjs/providers/pagination.d.ts

6 lines
152 B
TypeScript
Raw Permalink Normal View History

2023-03-03 18:25:07 -07:00
export interface PaginationResult<R> extends Array<R> {
next(): Promise<PaginationResult<R>>;
totalResults: null | number;
done: boolean;
}