source: trip-planner-front/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 413 bytes
Line 
1/// <reference types="node" />
2import { Readable } from 'stream';
3import AsyncReader from '../readers/async';
4import type Settings from '../settings';
5export default class StreamProvider {
6 private readonly _root;
7 private readonly _settings;
8 protected readonly _reader: AsyncReader;
9 protected readonly _stream: Readable;
10 constructor(_root: string, _settings: Settings);
11 read(): Readable;
12}
Note: See TracBrowser for help on using the repository browser.