Sha256: 6795938c466882436c5967e757a4e5d9f33bcc08887baf8e3fb0d65f54cc56c6
Contents?: true
Size: 473 Bytes
Versions: 38
Compression:
Stored size: 473 Bytes
Contents
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[]>; }
Version data entries
38 entries across 38 versions & 4 rubygems