mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
381 B
TypeScript
11 lines
381 B
TypeScript
// Type definitions for buffer-split 1.0
|
|
// Project: https://github.com/soldair/node-buffer-split#readme
|
|
// Definitions by: Ciffelia <https://github.com/ciffelia>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
declare function bufferSplit(buf: Buffer, splitBuf: Buffer, includeDelim?: boolean): Buffer[];
|
|
|
|
export = bufferSplit;
|