UNPKG

@tanishiking/aho-corasick

Version:

TypeScript implementation of the Aho-Corasick algorithm for efficient string matching

10 lines (9 loc) 192 B
/** * Configuration */ export interface TrieConfig { allowOverlaps: boolean; onlyWholeWords: boolean; caseInsensitive: boolean; } export declare const defaultConfig: TrieConfig;