import { RuleChunk } from "@cranq/bipt-parser"; import { ChunkType } from "./ChunkType"; import { VarAssignmentChunk } from "./VarAssignmentChunk"; export interface NodeParamChunk extends RuleChunk { type: ChunkType.NodeParam; captures: [string, VarAssignmentChunk]; }