Interface AutocompleteProps

interface AutocompleteProps {
    history?: {
        item: string;
    }[];
    response?: {
        keywords: {
            hits: SearchKeyword[];
        };
        products: {
            hits: SearchProduct[];
        };
    };
}

Properties

Properties

history?: {
    item: string;
}[]
response?: {
    keywords: {
        hits: SearchKeyword[];
    };
    products: {
        hits: SearchProduct[];
    };
}

The response from the autocomplete API.