vue-plugin-kuzzle
Version:
A Vuejs plugin shipping the Kuzzle SDK in your components
10 lines (9 loc) • 328 B
TypeScript
import { Kuzzle } from 'kuzzle-sdk';
import { Backends, SDKOptions } from '../types';
/**
* Instantiates the Kuzzle SDK by resolving the backend from the given config.
*
* @param backendsConfig
* @param sdkOptions
*/
export declare function instantiateKuzzleSDK(backendsConfig?: Backends, sdkOptions?: SDKOptions): Kuzzle;