claude-flow
Version:
Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)
13 lines (12 loc) • 486 B
TypeScript
import AsyncReader from '../readers/async.js';
import type Settings from '../settings.js';
import type { Entry, Errno } from '../types.js';
export declare type AsyncCallback = (error: Errno, entries: Entry[]) => void;
export default class AsyncProvider {
private readonly _root;
private readonly _settings;
protected readonly _reader: AsyncReader;
private readonly _storage;
constructor(_root: string, _settings: Settings);
constructor(callback: AsyncCallback): void;
}