UNPKG

cspell-lib

Version:

A library of useful functions used across various cspell tools.

20 lines 497 B
export interface ExtendedSuggestion { /** * The suggestion. */ word: string; /** * The word is preferred above others, except other "preferred" words. */ isPreferred?: boolean; /** * The suggested word adjusted to match the original case. */ wordAdjustedToMatchCase?: string; /** * The cost of using this word. * The lower the cost, the better the suggestion. */ cost?: number; } //# sourceMappingURL=Suggestion.d.ts.map