UNPKG

@yext/search-core

Version:

Typescript Networking Library for the Yext Search API

18 lines 677 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SpellCheckType = void 0; /** * Represents the type of spell check performed. * * @public */ var SpellCheckType; (function (SpellCheckType) { /** The API is suggesting an alternative query. */ SpellCheckType["Suggest"] = "SUGGEST"; /** The API is autocorrecting the original query. */ SpellCheckType["AutoCorrect"] = "AUTOCORRECT"; /** The API may be doing some combination of suggesting or autocorrecting. */ SpellCheckType["Combine"] = "COMBINE"; })(SpellCheckType = exports.SpellCheckType || (exports.SpellCheckType = {})); //# sourceMappingURL=SpellCheck.js.map