UNPKG

@klevu/core

Version:

Typescript SDK that simplifies development on Klevu backend. Klevu provides advanced AI-powered search and discovery solutions for online retailers.

20 lines (19 loc) 416 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.raw = void 0; /** * Take control and write any kind of query you wish to Klevu API. For experts only. * * @category Query * @param query * @param modifiers * @returns */ function raw(query, ...modifiers) { return { klevuFunctionId: "raw", queries: [query], modifiers, }; } exports.raw = raw;