@types/split
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Installation

npm install --save @types/split

Summary

This package contains type definitions for split (https://github.com/dominictarr/split).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/split.

index.d.ts

/// <reference types="node" />
/// <reference types="through" />

import { ThroughStream } from "through";

// doc-strings taken from https://github.com/dominictarr/split, used under MIT license

interface SplitOptions {
    maxLength?: number;
    /**
     * By default the last buffer not delimited by a newline or `matcher` will be emitted.
     * To prevent this set `options.trailing` to `false`.
     */
    trailing?: boolean;
}

declare function split(matcher?: any, mapper?: any, options?: SplitOptions): ThroughStream;

export = split;

Additional Details

Credits

These definitions were written by Marcin Porębski.

/@types/split/

    Package Sidebar

    Install

    npm i @types/split

    Weekly Downloads

    15,681

    Version

    1.0.5

    License

    MIT

    Unpacked Size

    3.79 kB

    Total Files

    5

    Last publish

    Collaborators

    • types