UNPKG

ethers

Version:

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

9 lines (6 loc) 218 B
export interface PaginationResult<R> extends Array<R> { next(): Promise<PaginationResult<R>>; // The total number of results available or null if unknown totalResults: null | number; done: boolean; }