mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-11 03:27:47 +08:00
* 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
11 lines
375 B
TypeScript
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;
|