import { Readable, Writable } from "node:stream"; export interface FS { // create creates an object with the given name. create(name: string): Promise; // open opens the named object. open(name: string): Promise; // remove removes the named object. remove(name: string): Promise; } // export interface FS { // // create creates an object with the given name. // create(name: string): Promise; // // open opens the object with the given name. // open(name: string): Promise; // // remove removes the named object. // remove(name: string): Promise; // } // export interface File { // createReadableStream(): Promise; // }