astro-ghostcms/.pnpm-store/v3/files/da/424fc8d9c6e5b4034ab8b4e1eb0...

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