projecte_ionic/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts
2022-02-09 18:30:03 +01:00

13 lines
413 B
TypeScript
Executable file

/// <reference types="node" />
import { Readable } from 'stream';
import AsyncReader from '../readers/async';
import type Settings from '../settings';
export default class StreamProvider {
private readonly _root;
private readonly _settings;
protected readonly _reader: AsyncReader;
protected readonly _stream: Readable;
constructor(_root: string, _settings: Settings);
read(): Readable;
}