Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
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.
14 lines
580 B
14 lines
580 B
/// <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;
|
|
}
|
|
|