UNPKG

lexer-state

Version:

Lightweight state machine library to define and manage state transition declaratively

11 lines (9 loc) 220 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';