import type { BlockSpec } from "../"; export default class Node { node: BlockSpec; constructor(node) { this.node = node; } matching() { return false; } selfClosing() { return false; } tag() { return null; } text() { return null; } }