Files
DefinitelyTyped/types/stemmer/index.d.ts
Will Ockmore 93c5cb136b Add types for stemmer package (#20675)
* Add types for stemmer package

Adds type definition for single default function in
package.

* Change typing in stemmer package to correct format
2017-10-18 12:33:43 -07:00

9 lines
291 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;
export = stemmer;