import { Stat } from "../files/file.js"; import { NodeFileFacade as NodeFile } from "../files/node-file-facade.js"; import { RandomAccessFileSystem } from "./filesystem.js"; /** * FileSystem pass-through for Node.js * Compatible with BrowserFileSystem. * @note Dummy implementation, not used (constructor returns a real NodeFileSystem instance) * @param options */ export declare class NodeFileSystemFacade implements RandomAccessFileSystem { constructor(options: { [key: string]: any; }); readonly readable = true; readonly writable = true; openReadableFile(path: string, flags: any): Promise; openWritableFile(path: string, flags: any, mode: any): Promise; readdir(dirname?: string, options?: {}): Promise; stat(path: string, options?: {}): Promise; unlink(path: string): Promise; fetch(path: RequestInfo, options?: RequestInit): Promise; } //# sourceMappingURL=node-filesystem-facade.d.ts.map