// Type definitions for split v0.3.3 // Project: https://github.com/dominictarr/split // Definitions by: Marcin Porębski // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare module "split" { interface SplitOptions { maxLength: number } function split(matcher?:any, mapper?:any, options?: SplitOptions):any; export = split; }