@yext/search-core
Version:
Typescript Networking Library for the Yext Search API
14 lines (13 loc) • 358 B
TypeScript
import { QueryParams } from '../http/params';
export interface AutocompleteQueryParams extends QueryParams {
input: string;
experienceKey: string;
api_key?: string;
v: number;
version?: string | number;
locale?: string;
sessionTrackingEnabled?: boolean;
visitorId?: string;
visitorIdMethod?: string;
limit?: number;
}