strong-soap
Version:
A minimal node SOAP client
16 lines (14 loc) • 451 B
JavaScript
// Copyright IBM Corp. 2016,2017. All Rights Reserved.
// Node module: strong-soap
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
;
var Parameter = require('./parameter');
class Input extends Parameter {
constructor(nsName, attrs, options) {
super(nsName, attrs, options);
}
}
Input.elementName = 'input';
module.exports = Input;
//# sourceMappingURL=input.js.map