import type { Attrs, Node, NodeType } from '@milkdown/prose/model' import { StackElement } from '../utility' export class ParserStackElement extends StackElement { constructor( public type: NodeType, public content: Node[], public attrs?: Attrs ) { super() } push(node: Node, ...rest: Node[]) { this.content.push(node, ...rest) } pop(): Node | undefined { return this.content.pop() } static create(type: NodeType, content: Node[], attrs?: Attrs) { return new ParserStackElement(type, content, attrs) } }