SearchResults
Home > @gooddata/sdk-ui-semantic-search > SearchResults
SearchResults type
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Defines the shape of the search results.
Signature:
export type SearchResults<I extends SearchItem, G extends SearchItemGroup<I>> = {
searchItems: ReadonlyArray<I>;
searchAllItems: ReadonlyArray<I>;
searchItemGroups: ReadonlyArray<G>;
searchKeywords: ReadonlyArray<string>;
};
References: SearchItem, SearchItemGroup