mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-11-02 02:45:30 +00:00
Fixed some build options for vite
This commit is contained in:
44
node_modules/@sindresorhus/merge-streams/index.d.ts
generated
vendored
Normal file
44
node_modules/@sindresorhus/merge-streams/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
import {type Readable} from 'node:stream';
|
||||
|
||||
/**
|
||||
Merges an array of [readable streams](https://nodejs.org/api/stream.html#readable-streams) and returns a new readable stream that emits data from the individual streams as it arrives.
|
||||
|
||||
If you provide an empty array, it returns an already-ended stream.
|
||||
|
||||
@example
|
||||
```
|
||||
import mergeStreams from '@sindresorhus/merge-streams';
|
||||
|
||||
const stream = mergeStreams([streamA, streamB]);
|
||||
|
||||
for await (const chunk of stream) {
|
||||
console.log(chunk);
|
||||
//=> 'A1'
|
||||
//=> 'B1'
|
||||
//=> 'A2'
|
||||
//=> 'B2'
|
||||
}
|
||||
```
|
||||
*/
|
||||
export default function mergeStreams(streams: Readable[]): MergedStream;
|
||||
|
||||
/**
|
||||
A single stream combining the output of multiple streams.
|
||||
*/
|
||||
export class MergedStream extends Readable {
|
||||
/**
|
||||
Pipe a new readable stream.
|
||||
|
||||
Throws if `MergedStream` has already ended.
|
||||
*/
|
||||
add(stream: Readable): void;
|
||||
|
||||
/**
|
||||
Unpipe a stream previously added using either `mergeStreams(streams)` or `MergedStream.add(stream)`.
|
||||
|
||||
Returns `false` if the stream was not previously added, or if it was already removed by `MergedStream.remove(stream)`.
|
||||
|
||||
The removed stream is not automatically ended.
|
||||
*/
|
||||
remove(stream: Readable): boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user