UNPKG

@tangany/waas

Version:

node.js SDK for Tangany Wallet as a Service API

10 lines (9 loc) 510 B
import { EthTransaction } from "../../eth-transaction"; import { ITransactionSearchResponse } from "../../interfaces/ethereum"; import { IDefaultIteratorValue, ResourcePageIterable } from "./resource-page-iterable"; interface IIteratorValue extends IDefaultIteratorValue<EthTransaction> { } export declare class EthTransactionPageIterable extends ResourcePageIterable<ITransactionSearchResponse, IIteratorValue> { protected convertApiResponse(res: ITransactionSearchResponse): IIteratorValue; } export {};