frontend/.pnpm-store/v3/files/27/cf98b8e80029fc8721ab9887e3608daaec1c2067a28536c3da8912a1828df9f6bcb554a92a7b18f1a1d7f36ae71a13a705cc8f3f69bb2218fa61957a1112ca

11 lines
483 B
Plaintext

import * as fsWalk from '@nodelib/fs.walk';
import { Entry, ReaderOptions, Pattern } from '../types';
import Reader from './reader';
import ReaderStream from './stream';
export default class ReaderAsync extends Reader<Promise<Entry[]>> {
protected _walkAsync: typeof fsWalk.walk;
protected _readerStream: ReaderStream;
dynamic(root: string, options: ReaderOptions): Promise<Entry[]>;
static(patterns: Pattern[], options: ReaderOptions): Promise<Entry[]>;
}