Files
DefinitelyTyped/types/leven/index.d.ts
2017-08-20 15:37:53 -07:00

9 lines
283 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;