// Type definitions for split v1.0.1 // Project: https://github.com/dominictarr/split // Definitions by: Marcin Porębski // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// /// import { ThroughStream } from 'through'; interface SplitOptions { maxLength: number } declare function split(matcher?: any, mapper?: any, options?: SplitOptions): ThroughStream; export = split;