UNPKG

@types/snowball-stemmers

Version:
8 lines (5 loc) 156 B
export interface Stemmer { stem(term: string): string; } export function newStemmer(locale: string): Stemmer; export function algorithms(): string[];