UNPKG

ethers

Version:

A complete and compact Ethereum library, for dapps, wallets and any other tools.

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