UNPKG

lexer-state

Version:

Lightweight state machine library to define and manage state transition declaratively

8 lines (6 loc) 172 B
import { TokenType, TokenClassType } from './token'; export interface ILexem { tokenClass: TokenClassType; tokenKey: TokenType[TokenClassType]; matchers?: RegExp; }