UNPKG

prism-code-editor

Version:

Lightweight, extensible code editor component for the web using Prism

10 lines (9 loc) 236 B
export type Token = { type: string; content: string | Token | (string | Token)[]; }; export type IdentifierTestOptions = { word?: boolean | undefined; number?: boolean | undefined; template?: boolean | undefined; };