UNPKG

fuzzy-rater

Version:

Tooling for fuzzily rating text according to some query

11 lines 226 B
/** * A trace that can be found in a NFA instance */ export declare type INFATrace<N, T> = { final: N; path: { fromNode: N; transition: T; }[]; }; //# sourceMappingURL=INFATrace.d.ts.map