mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 14:30:49 +08:00
11 lines
429 B
TypeScript
11 lines
429 B
TypeScript
// Type definitions for cleave.js 1.0
|
|
// Project: https://github.com/nosir/cleave.js
|
|
// Definitions by: C Lentfort <https://github.com/clentfort>, J Giancono <https://github.com/jasongi-at-sportsbet>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import { CleaveOptions } from './options';
|
|
|
|
declare function Cleave(selector: string, options: CleaveOptions): void;
|
|
export = Cleave;
|