Type alias ParserNode

ParserNode: {
    child: Node;
    closed: boolean;
    input?: string;
    parent: Node;
    parser: GeneralParser<any, any> | null;
}

Type declaration

  • child: Node
  • closed: boolean
  • Optional input?: string
  • parent: Node
  • parser: GeneralParser<any, any> | null

Generated using TypeDoc