SearchFieldEventMap Interface
SearchFieldEventMap is an interface used to provide type-safe event listeners and is not instantiated or used directly. It maps event names to their corresponding event object types and is consumed by addEventListener to ensure correct typing of listener callbacks.
export declare interface SearchFieldEventMap
Fields
queryChanging
Event fired when the search query is about to change.
queryChanging: QueryChangingEvent;
Field Value
queryChanged
Event fired when the search query has changed and text searching occurs.
queryChanged: QueryChangedEvent;