Skip to content

Commit

Permalink
types: add Client.wsdl for accessing client.wsdl during soap.createCl…
Browse files Browse the repository at this point in the history
…ient() (#990)
  • Loading branch information
waitingsong authored and jsdevel committed Dec 11, 2017
1 parent 3db3355 commit f8f5aef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/soap.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ export class Client extends EventEmitter {
setEndpoint(endpoint: string): void;
setSOAPAction(action: string): void;
setSecurity(security: ISecurity): void;
[method: string]: ISoapMethod | Function;
wsdl: WSDL;
[method: string]: ISoapMethod | WSDL | Function;
}

export function createClient(url: string, callback: (err: any, client: Client) => void): void;
Expand Down

0 comments on commit f8f5aef

Please sign in to comment.