Last change
on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
566 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /// <reference types="node" />
|
---|
| 2 | import { Readable } from 'stream';
|
---|
| 3 | import * as fsStat from '@nodelib/fs.stat';
|
---|
| 4 | import * as fsWalk from '@nodelib/fs.walk';
|
---|
| 5 | import { Pattern, ReaderOptions } from '../types';
|
---|
| 6 | import Reader from './reader';
|
---|
| 7 | export default class ReaderStream extends Reader<Readable> {
|
---|
| 8 | protected _walkStream: typeof fsWalk.walkStream;
|
---|
| 9 | protected _stat: typeof fsStat.stat;
|
---|
| 10 | dynamic(root: string, options: ReaderOptions): Readable;
|
---|
| 11 | static(patterns: Pattern[], options: ReaderOptions): Readable;
|
---|
| 12 | private _getEntry;
|
---|
| 13 | private _getStat;
|
---|
| 14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.