You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
566 B
15 lines
566 B
3 years ago
|
/// <reference types="node" />
|
||
|
import { Readable } from 'stream';
|
||
|
import * as fsStat from '@nodelib/fs.stat';
|
||
|
import * as fsWalk from '@nodelib/fs.walk';
|
||
|
import { Pattern, ReaderOptions } from '../types';
|
||
|
import Reader from './reader';
|
||
|
export default class ReaderStream extends Reader<Readable> {
|
||
|
protected _walkStream: typeof fsWalk.walkStream;
|
||
|
protected _stat: typeof fsStat.stat;
|
||
|
dynamic(root: string, options: ReaderOptions): Readable;
|
||
|
static(patterns: Pattern[], options: ReaderOptions): Readable;
|
||
|
private _getEntry;
|
||
|
private _getStat;
|
||
|
}
|