/** * Adapters - Fs * * @module platform/adapters/fs */ export { FileCache } from "./cache/file-cache.js"; export type { FileCacheOptions } from "./cache/types.js"; export { createFSAdapter } from "./factory.js"; export { createFSAdapterFromConfig, enhanceAdapterWithFS, getFSAdapterType, isFSAdapterConfigured, } from "./integration.js"; export { GitHubFSAdapter } from "./github/index.js"; export { MultiProjectFSAdapter } from "./veryfront/multi-project-adapter.js"; export { ProxyFSAdapterManager } from "./veryfront/proxy-manager.js"; export { VeryfrontFSAdapter } from "./veryfront/index.js"; export type { CacheStats, DirectoryEntry, FSAdapter, FSAdapterConfig, VeryfrontFSState, } from "./veryfront/types.js"; export { FSAdapterWrapper, isExtendedFSAdapter, NotSupportedError, wrapFSAdapter, } from "./wrapper.js"; export type { ExtendedFileSystemAdapter } from "./wrapper.js"; //# sourceMappingURL=index.d.ts.map