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