TypeScript definitions for split
- Types
- ESM
- CJS
- License
- MIT
- Install Size
- 3.8 kB(2.5 MB)
- Vulns
- 0
- Published
$
npm install @types/split$
pnpm add @types/split$
yarn add @types/split$
bun add @types/split$
deno add npm:@types/split$
vlt install @types/split$
vp add @types/split# Usually installed as a dev dependency
$
npm install -D @types/split$
pnpm add -D @types/split$
yarn add -D @types/split$
bun add -d @types/split$
deno add -D npm:@types/split$
vlt install -D @types/split$
vp add -D @types/splitInstallation
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
- Last updated: Tue, 07 Nov 2023 15:11:36 GMT
- Dependencies: @types/node, @types/through
Credits
These definitions were written by Marcin Porębski.