Type Alias TrieSearchReducerData<T>
type TrieSearchReducerData<T> = {
ignoreCasePhrase: string;
index: number;
matches: T[];
phrase: string;
words: string[];
}
ignoreCasePhrase: string;
index: number;
matches: T[];
phrase: string;
words: string[];
}
Type Parameters
- T
Index
Properties
Properties
ignoreCasePhrase  
ignoreCasePhrase: string
The phrase after TrieSearchOptions.ignoreCase applied.
index
index: number
The current phrase index.
matches
Matches found from the current phrase.
phrase
phrase: string
The original phrase.
words
words: string[]
The split words from the phrase.
Data provided when reducing a batch of matches.