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