Files
fieldcraft.thefoldwithin.earth/system/node_modules/ethers/src.ts/providers/pagination.ts
T
2025-05-19 20:36:21 -05:00

9 lines
218 B
TypeScript

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;
}