UNPKG

dicom-microscopy-viewer-changed

Version:
14 lines (10 loc) 203 B
'use strict' let Node = require('./node') class Comment extends Node { constructor(defaults) { super(defaults) this.type = 'comment' } } module.exports = Comment Comment.default = Comment