export type Feature = [string, number];

export interface SuggestionResult {
    word: string;
    score: number;
}

