fuzzy-rater
Version:
Tooling for fuzzily rating text according to some query
14 lines • 630 B
TypeScript
import { INormalizedNFATransition } from "./INormalizedNFATransition";
export declare type INFAInternalNode<N, T> = {
/** The ID of the node */
ID: string;
/** The available character transitions */
charTransitions: Record<string, INormalizedNFATransition<T>[]>;
/** The empty transitions to take */
emptyTransitions: INormalizedNFATransition<T>[];
/** The transitions to take if no character transition exists */
remainingTransitions: INormalizedNFATransition<T>[];
/** Any extra metadata to attach to the node */
metadata: N;
};
//# sourceMappingURL=INFAInternalNode.d.ts.map