Urara-Blog/node_modules/.pnpm-store/v3/files/e6/4a336bc6e01c463aada00b8536c8fe39c7bc35c376d31ff1d1334712454fc895a4b36d77d145417fdb7a92a9876824912348ef4811f18687fe996dfba766ec
2022-08-14 01:14:53 +08:00

12 lines
413 B
Text

/// <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;
}