Files
fieldcraft.thefoldwithin.earth/system/node_modules/ethers/lib.commonjs/providers/pagination.d.ts
T

6 lines
192 B
TypeScript
Raw Normal View History

2025-05-19 20:36:21 -05:00
export interface PaginationResult<R> extends Array<R> {
next(): Promise<PaginationResult<R>>;
totalResults: null | number;
done: boolean;
}
//# sourceMappingURL=pagination.d.ts.map