Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. 'use strict'
  2. let Node = require('./node')
  3. class Comment extends Node {
  4. constructor(defaults) {
  5. super(defaults)
  6. this.type = 'comment'
  7. }
  8. }
  9. module.exports = Comment
  10. Comment.default = Comment