d11 theme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

5 lines
410 B

import { Trie, WalkerIterator } from 'cspell-trie-lib';
import { SuggestionResult } from './entities';
export declare type SuggestionIterator = Generator<SuggestionResult, any, number | undefined>;
export declare function suggest(trie: Trie, word: string, minScore?: number): SuggestionIterator;
export declare function suggestIteration(i: WalkerIterator, word: string, minScore?: number): SuggestionIterator;