summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/misc/oktavia/src/stemmer/stemmer.jsx
blob: 43bd75fa427e6f3dc74864ee3794522a5bd9e788 (plain)
1
2
3
4
5
interface Stemmer
{
    function stemWord (word : string) : string;
    function stemWords (words : string[]) : string[];
}