persona-community-5/.pnpm-store/v3/files/da/424fc8d9c6e5b4034ab8b4e1eb038471fcb9daae2e50c7538e2ede5a8f1aba3676d87279cccf850bcd14528d8fdcf9ef82cdf632bf0f557782603cdb526483
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
203 B
Plaintext

'use strict'
let Node = require('./node')
class Comment extends Node {
constructor(defaults) {
super(defaults)
this.type = 'comment'
}
}
module.exports = Comment
Comment.default = Comment