UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

16 lines (12 loc) 301 B
type Promisable<T> = T | Promise<T>; declare namespace escalade { export type Callback = ( directory: string, files: string[], ) => Promisable<string | false | void>; } declare function escalade( directory: string, callback: escalade.Callback, ): Promise<string | void>; export = escalade;