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