/** * Cardano Wallet Backend API *

* * OpenAPI spec version: 2021.3.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { InlineResponse2022 } from '../models'; /** * ProxyApi - axios parameter creator * @export */ export declare const ProxyApiAxiosParamCreator: (configuration?: Configuration) => { /** *

status: stable

Submits a transaction that was created and signed outside of cardano-wallet. * @summary Submit External Transaction * @param {Object} [body] * @param {*} [options] Override http request option. * @throws {RequiredError} */ postExternalTransaction: (body?: Object, options?: any) => Promise; }; /** * ProxyApi - functional programming interface * @export */ export declare const ProxyApiFp: (configuration?: Configuration) => { /** *

status: stable

Submits a transaction that was created and signed outside of cardano-wallet. * @summary Submit External Transaction * @param {Object} [body] * @param {*} [options] Override http request option. * @throws {RequiredError} */ postExternalTransaction(body?: Object, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * ProxyApi - factory interface * @export */ export declare const ProxyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** *

status: stable

Submits a transaction that was created and signed outside of cardano-wallet. * @summary Submit External Transaction * @param {Object} [body] * @param {*} [options] Override http request option. * @throws {RequiredError} */ postExternalTransaction(body?: Object, options?: any): AxiosPromise; }; /** * ProxyApi - object-oriented interface * @export * @class ProxyApi * @extends {BaseAPI} */ export declare class ProxyApi extends BaseAPI { /** *

status: stable

Submits a transaction that was created and signed outside of cardano-wallet. * @summary Submit External Transaction * @param {Object} [body] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ProxyApi */ postExternalTransaction(body?: Object, options?: any): Promise>; }