agentlang
Version:
The easiest way to build the most reliable AI agents - enterprise-grade teams of AI agents that collaborate with each other and humans
14 lines • 522 B
TypeScript
/**
* Filesystem module exports
*/
export * from './interfaces.js';
import { ExtendedFileSystem } from './interfaces.js';
/**
* Create the appropriate filesystem implementation based on environment
* @returns Promise resolving to appropriate filesystem implementation
*/
export declare function createFS(options?: any): Promise<ExtendedFileSystem>;
export { createNodeFS } from './node-fs.js';
export { createLightningFS } from './lightning-fs.js';
export * from './interfaces.js';
//# sourceMappingURL=index.d.ts.map