mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 12:42:58 +08:00
9 lines
284 B
TypeScript
9 lines
284 B
TypeScript
// Type definitions for leven 2.1
|
|
// Project: https://github.com/sindresorhus/leven
|
|
// Definitions by: Jan Alonzo <https://github.com/jmalonzo/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function leven(a: string, b: string): number;
|
|
|
|
export = leven;
|