fauton
Version:
A library to test any finite automaton with arbitrary alphabets
8 lines (7 loc) • 430 B
TypeScript
import { InputStringOption } from '../../../types';
import { FiniteAutomaton } from '../../FiniteAutomaton';
import { RegularExpression } from '../../RegularExpression';
export declare function test(logsPath: string, configs: {
automaton: FiniteAutomaton | RegularExpression;
options: InputStringOption;
}[], preAutomatonTestCb: (totalInputStrings: number) => void, postAutomatonTestCb: () => void): Promise<void>;