UNPKG

claude-flow

Version:

Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)

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