cisco-axl
Version:
A library to make Cisco AXL a lot easier
13 lines (11 loc) • 412 B
TypeScript
declare module 'strong-soap' {
export namespace soap {
export class WSDL {
static open(wsdlUri: string, options: any, callback: (err: any, wsdl: any) => void): void;
}
export function createClient(wsdlPath: string, options: any, callback: (err: any, client: any) => void): void;
export class BasicAuthSecurity {
constructor(username: string, password: string);
}
}
}