@openweb3-io/waas
Version:
WaaS API client and WaaS verification library
12 lines (11 loc) • 678 B
TypeScript
import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { SweepAddressRequest } from '../models/SweepAddressRequest';
import { SweepAddressResponse } from '../models/SweepAddressResponse';
export declare class SweepsApiRequestFactory extends BaseAPIRequestFactory {
v1SweepsAddress(address: string, sweepAddressRequest: SweepAddressRequest, _options?: Configuration): Promise<RequestContext>;
}
export declare class SweepsApiResponseProcessor {
v1SweepsAddressWithHttpInfo(response: ResponseContext): Promise<HttpInfo<SweepAddressResponse>>;
}