Interface FstabEntry

Represents an entry in the fstab (filesystem table). Analogous to /etc/fstab in Linux, but simplified for our use.

interface FstabEntry {
    options?: string;
    source: string;
    target: string;
    type: string;
}

Properties

options?: string

Optional comma-separated mount options (e.g., "size=1048576,storage=localStorage")

source: string

The source of the mount, e.g., device, URL, database name, etc. For memory/webstorage/dropbox/googledrive, this may be empty/ignored.

target: string

The target mount point (absolute path in the virtual FS)

type: string

Filesystem type (e.g., 'memory', 'fetch', 'indexeddb', 'webstorage', 'zip', 'iso', 'dropbox', 'googledrive', etc.)