UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

17 lines (16 loc) 291 B
/** * The basic structure of a response from the Search API. * * @internal */ export interface ApiResponse { response: unknown; meta: { uuid: string; errors: { message: string; code: number; type: string; }[]; }; }