export type TokenKind = "comment" | "constant" | "heading" | "keyword" | "number" | "plain" | "string" | "type"; export interface Token { readonly kind: TokenKind; readonly text: string; }