Type Alias TrieSearchReducerResetData<T>
type TrieSearchReducerResetData<T> = {
keyFields: KeyFields;
list: T[];
options: TrieSearchOptions;
phrases: string | Iterable<string>;
}
keyFields: KeyFields;
list: T[];
options: TrieSearchOptions;
phrases: string | Iterable<string>;
}
Type Parameters
- T
Properties
keyFields
Clone of key fields from host TrieSearch instance.
list
The output results array from TrieSearch.search.
options
Clone of options from host TrieSearch instance.
phrases
The phrases being searched; not lowercase if TrieSearchOptions.ignoreCase is true.
Data provided when resetting reducers.