import { RuleChunk } from "@cranq/bipt-parser"; import { ChunkType } from "./ChunkType"; import { AnyChunk } from "./AnyChunk"; import { ExportChunk } from "./ExportChunk"; import { IdentifierChunk } from "./IdentifierChunk"; export interface TypeChunk extends RuleChunk { type: ChunkType.Type; captures: [string, ExportChunk | null, IdentifierChunk, AnyChunk]; }