interface LanguageModel {
    getUnigrams(key: string): Unigram[];
    hasUnigrams(key: string): boolean;
}

Implemented by

Methods