strong-soap
Version:
A minimal node SOAP client
17 lines (15 loc) • 538 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 XSDElement = require('./xsdElement');
class Annotation extends XSDElement {
constructor(nsName, attrs, options) {
super(nsName, attrs, options);
}
}
Annotation.elementName = 'annotation';
Annotation.allowedChildren = ['documentation', 'appinfo'];
module.exports = Annotation;
//# sourceMappingURL=annotation.js.map