@botonic/plugin-contentful
Version:
Botonic Plugin Contentful is one of the **[available](https://github.com/hubtype/botonic/tree/master/packages)** plugins for Botonic. **[Contentful](http://www.contentful.com)** is a CMS (Content Management System) which manages contents of a great variet
15 lines (14 loc) • 430 B
TypeScript
import Stemmer from '@nlpjs/core/src/stemmer';
export declare class StemmerSk implements Stemmer {
aggressive: boolean;
constructor(aggressive?: boolean);
stem(tokens: string[]): string[];
private stemToken;
private removeCase;
private palatalise;
private removePossessives;
private removeComparative;
private removeDiminutive;
private removeAugmentative;
private removeDerivational;
}