UNPKG

strong-soap

Version:
16 lines (14 loc) 456 B
// 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 'use strict'; var Parameter = require('./parameter'); class Output extends Parameter { constructor(nsName, attrs, options) { super(nsName, attrs, options); } } Output.elementName = 'output'; module.exports = Output; //# sourceMappingURL=output.js.map