strong-soap
Version:
A minimal node SOAP client
15 lines (10 loc) • 306 B
JavaScript
;
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;