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

6 lines
192 B
TypeScript
Raw Normal View History

2022-09-05 23:57:11 +03:00
export interface PaginationResult<R> extends Array<R> {
next(): Promise<PaginationResult<R>>;
totalResults: null | number;
done: boolean;
}
//# sourceMappingURL=pagination.d.ts.map