Files
DefinitelyTyped/types/cleave.js/index.d.ts
C Lentfort cfce6f295f Add typings for cleave.js (#20550)
* Add typings for cleave.js

Add typings for cleave.js and <Cleave> react component.

* Fix lint errors

* fixup! Fix lint errors

* fixup! Fix lint errors
2017-10-13 15:16:29 -07:00

11 lines
375 B
TypeScript

// Type definitions for cleave.js 1.0
// Project: https://github.com/nosir/cleave.js
// Definitions by: C Lentfort <https://github.com/clentfort>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { CleaveOptions } from './options';
declare function Cleave(selector: string, options: CleaveOptions): void;
export = Cleave;