@yext/search-core
Version:
Typescript Networking Library for the Yext Search API
14 lines (13 loc) • 344 B
TypeScript
import { SearchConfig } from './models/core/SearchConfig';
import { SearchCore } from './SearchCore';
/**
* The entrypoint to the search-core library.
*
* @remarks
* Returns an {@link SearchCore} instance.
*
* @param config - The search-core config
*
* @public
*/
export declare function provideCore(config: SearchConfig): SearchCore;