projects/storefrontlib/cms-components/navigation/search-box/search-box.model.ts
Properties |
|
| message |
message:
|
Type : string
|
| Optional |
| products |
products:
|
Type : any[]
|
| Optional |
| suggestions |
suggestions:
|
Type : string[]
|
| Optional |
export interface SearchBoxConfig {
displaySuggestions?: boolean;
displayProducts?: boolean;
displayProductImages?: boolean;
maxProducts?: number;
maxSuggestions?: number;
minCharactersBeforeRequest?: number;
}
export interface SearchResults {
message?: string;
products?: any[];
suggestions?: string[];
}