mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 11:51:10 +08:00
* Add types for stemmer package Adds type definition for single default function in package. * Change typing in stemmer package to correct format
9 lines
291 B
TypeScript
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;
|