UNPKG

fuzzy-rater

Version:

Tooling for fuzzily rating text according to some query

9 lines 331 B
import { INormalizedDFANode } from "./INormalizedDFANode"; /** The template for a dfa */ export declare type INormalizedDFATemplate<N, T> = { /** The nodes of the template */ nodes: INormalizedDFANode<N, T>[]; /** The initial state */ initial: string; }; //# sourceMappingURL=INormalizedDFATemplate.d.ts.map