* The algoliasearchHelper module is the function that will let its * contains everything needed to use the Algoliasearch * Helper. It is a also a function that instanciate the helper. * To use the helper, you also need the Algolia JS client v3. * @example * //using the UMD build * var client =
(client, index, opts, searchResultsOptions)
| 39 | * @return {AlgoliaSearchHelper} The helper instance |
| 40 | */ |
| 41 | function algoliasearchHelper(client, index, opts, searchResultsOptions) { |
| 42 | return new AlgoliaSearchHelper(client, index, opts, searchResultsOptions); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * The version currently used |
no outgoing calls