source: node_modules/@swagger-api/apidom-core/es/elements/Comment.mjs

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 217 bytes
Line 
1import { StringElement } from 'minim';
2class Comment extends StringElement {
3 constructor(content, meta, attributes) {
4 super(content, meta, attributes);
5 this.element = 'comment';
6 }
7}
8export default Comment;
Note: See TracBrowser for help on using the repository browser.