UNPKG

lexer-state

Version:

Lightweight state machine library to define and manage state transition declaratively

7 lines (6 loc) 212 B
export interface ILexerStore { init(): ILexerStore; add<T extends Record<string, any>>(name: string, data: Partial<T>): void; retrieveState(tableName: string): string; } export * from './relayStore';