UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

10 lines (9 loc) 235 B
export interface QueryParams { [key: string]: string | number | boolean | undefined; } export interface BodyParams { [key: string]: any; } export interface SanitizedQueryParams { [key: string]: string | number | boolean; }