Interface Overlay

interface Overlay {
    name: "Overlay";
    options: {
        readable: {
            description: "The file system that initially populates this file system.";
            required: true;
            type: "object";
        };
        writable: {
            description: "The file system to write modified files to.";
            required: true;
            type: "object";
        };
    };
    create(options: OverlayOptions): OverlayFS;
    isAvailable(): boolean;
}

Hierarchy

  • _Overlay
    • Overlay

Properties

Methods

Properties

name: "Overlay" = 'Overlay'
options: {
    readable: {
        description: "The file system that initially populates this file system.";
        required: true;
        type: "object";
    };
    writable: {
        description: "The file system to write modified files to.";
        required: true;
        type: "object";
    };
} = ...

Methods