UNPKG

cargowise-eadapter

Version:
13 lines (12 loc) 329 B
import * as soap from "soap"; import { Config } from "./config"; /** * Setup a soap client that is compatible with CW1 eAdapter service. * * @param config eAdapter config * @returns soap client and WSDL object */ export declare function setupSoap(config: Config): Promise<{ wsdl: soap.WSDL; client: soap.Client; }>;