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