Files
DefinitelyTyped/leven/index.d.ts
Jan Alonzo 8d1b4a6eb1 Add type definitions for 'leven' (#14975)
* Add type definitions for 'leven'

* Fix lint issues

* set strictNullChecks = true
2017-03-09 22:07:05 -08: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;