UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

16 lines 251 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 }[] } }