Files
DefinitelyTyped/types/leven/index.d.ts
2017-03-24 14:27:52 -07:00

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;