Files
DefinitelyTyped/types/stemmer/index.d.ts
2018-02-01 11:12:13 -08:00

11 lines
321 B
TypeScript

// Type definitions for stemmer 1.0
// Project: https://github.com/wooorm/stemmer#readme
// Definitions by: Will Ockmore <https://github.com/will-ockmore>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function stemmer(value: string): string;
declare namespace stemmer {}
export = stemmer;