ethers.js/lib.commonjs/providers/pagination.d.ts
2023-04-27 21:19:55 +09:00

6 lines
192 B
TypeScript

export interface PaginationResult<R> extends Array<R> {
next(): Promise<PaginationResult<R>>;
totalResults: null | number;
done: boolean;
}
//# sourceMappingURL=pagination.d.ts.map