interface RecentQueriesListOptions {
    clearFilters?: boolean;
    maxLength: number;
}

Properties

clearFilters?: boolean

Whether to clear all active query filters when the end user submits a new query from the recent queries list. Setting this option to "false" is not recommended & can lead to an increasing number of queries returning no results.

maxLength: number

The maximum number of queries to retain in the list.

10