gx
chenyc
2025-06-12 7b72ac13a83764a662159d4a49b7fffb90476ecb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/// <reference types="node"/>
import {Readable as ReadableStream} from 'stream';
 
declare namespace intoStream {
    type Input =
        | Buffer
        | NodeJS.TypedArray
        | ArrayBuffer
        | string
        | Iterable<Buffer | string>
        | AsyncIterable<Buffer | string>;
 
    /* eslint-disable @typescript-eslint/ban-types */
    type InputObject =
        | object
        | Iterable<object>
        | AsyncIterable<object>;
    /* eslint-enable @typescript-eslint/ban-types */
}
 
declare const intoStream: {
    /**
    Convert object `input` into a stream.
 
    @param input - The object input to convert to a stream.
    @returns A [readable object stream](https://nodejs.org/api/stream.html#stream_object_mode).
    */
    object: (
        input: intoStream.InputObject | Promise<intoStream.InputObject>
    ) => ReadableStream;
 
    /**
    Convert `input` into a stream. Adheres to the requested chunk size, except for `array` where each element will be a chunk.
 
    @param input - The input to convert to a stream.
    @returns A [readable stream](https://nodejs.org/api/stream.html#stream_class_stream_readable).
 
    @example
    ```
    import intoStream = require('into-stream');
 
    intoStream('unicorn').pipe(process.stdout);
    //=> 'unicorn'
    ```
    */
    (input: intoStream.Input | Promise<intoStream.Input>): ReadableStream;
};
 
export = intoStream;