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