@yext/search-headless
Version:
A library for powering UI components for Yext Search integrations
14 lines (13 loc) • 307 B
text/typescript
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
}