UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

18 lines (16 loc) 265 B
/** * The maximum limit of results per vertical. * Each limit can be set from 1-50, inclusive. * * @example * \{ * people: 5, * locations: 10, * events: 8 * \} * * @public */ export interface UniversalLimit { [verticalKey: string]: number }