UNPKG

@yext/search-headless

Version:

A library for powering UI components for Yext Search integrations

14 lines 356 B
import { SpellCheck } from '@yext/search-core'; /** * Maintains whether spellcheck is enabled and the spellcheck response from the * latest search. * * @public */ export interface SpellCheckState extends Partial<SpellCheck> { /** * Whether or not spellcheck is enabled. */ enabled: boolean; } //# sourceMappingURL=spellcheck.d.ts.map