OpenFairyGUI API
    Preparing search index...

    Type Alias PublishFileSystem

    PublishFileSystem: PublishOutputFileSystem & {
        deleteFile?: (path: string) => Promise<void>;
        exists?: FileSystem["exists"];
        readdir?: FileSystem["readdir"];
        readFileRaw?: FileSystem["readFileRaw"];
    }

    Full filesystem contract consumed by the capability-injected publish core.

    Read, enumeration, and delete operations are optional because individual publish lanes only request them when needed.