UNPKG

claude-flow

Version:

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

13 lines (12 loc) 817 B
import type { FileSystemAdapter, StatAsynchronousMethod, StatSynchronousMethod } from './adapters/fs.js'; import * as async from './providers/async.js'; import Settings, { Options } from './settings.js'; import type { Stats } from './types.js'; declare type AsyncCallback = async.AsyncCallback; declare function stat(path: string, callback: AsyncCallback): void; declare function stat(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; declare namespace stat { function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise<Stats>; } declare function statSync(path: string, optionsOrSettings?: Options | Settings): Stats; export { Settings, stat, statSync, AsyncCallback, FileSystemAdapter, StatAsynchronousMethod, StatSynchronousMethod, Options, Stats };