cargowise-eadapter
Version:
CargoWise eAdapter client
13 lines (12 loc) • 329 B
TypeScript
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;
}>;