@tangany/waas
Version:
node.js SDK for Tangany Wallet as a Service API
12 lines (11 loc) • 460 B
TypeScript
import { IWalletSearchResponse } from "../../interfaces/wallet";
import { Wallet } from "../../wallet";
import { ResourcePageIterable } from "./resource-page-iterable";
interface IIteratorValue {
hits: IWalletSearchResponse["hits"];
list: Wallet[];
}
export declare class WalletPageIterable extends ResourcePageIterable<IWalletSearchResponse, IIteratorValue> {
protected convertApiResponse(res: IWalletSearchResponse): IIteratorValue;
}
export {};