source: trip-planner-front/node_modules/fast-glob/out/readers/stream.d.ts@ fa375fe

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

initial commit

  • Property mode set to 100644
File size: 566 bytes
RevLine 
[6a3a178]1/// <reference types="node" />
2import { Readable } from 'stream';
3import * as fsStat from '@nodelib/fs.stat';
4import * as fsWalk from '@nodelib/fs.walk';
5import { Pattern, ReaderOptions } from '../types';
6import Reader from './reader';
7export 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.