mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
split def. added
This commit is contained in:
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
// Type definitions for split v0.3.3
|
||||
// Project: https://github.com/dominictarr/split
|
||||
// Definitions by: Marcin Porębski <https://github.com/marcinporebski>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../node/node.d.ts" />
|
||||
|
||||
declare module "split" {
|
||||
|
||||
interface SplitOptions {
|
||||
maxLength: number
|
||||
}
|
||||
|
||||
function split(matcher?:any, mapper?:any, options?: SplitOptions):any;
|
||||
|
||||
export = split;
|
||||
}
|
||||
Reference in New Issue
Block a user