mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-05 05:04:26 +00:00
11 lines
321 B
TypeScript
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;
|