@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) • 433 B
TypeScript
/**
* From https://github.com/Tutanchamon/pl_stemmer/blob/master/pl_stemmer.py
*/
import Stemmer from '@nlpjs/core/src/stemmer';
export declare class StemmerPl implements Stemmer {
stem(tokens: string[]): string[];
private removeGeneralEnds;
private removeDiminutive;
private removeVerbsEnds;
private removeNouns;
private removeAdjectiveEnds;
private removeAdverbsEnds;
private removePluralForms;
}