Interface SandboxMount

A filesystem mount available to the sandbox, mirrored from the host window.

Mounts appear and disappear at runtime — e.g. a Firestore-backed store is mounted at /firestore after the user signs in and removed on logout. Read or subscribe to the set, then access the files through the fs module at the mount's path.

interface SandboxMount {
    id?: string;
    path: string;
    type: string;
}

Properties

Properties

id?: string

Optional stable identifier.

path: string

Absolute path where the mount is reachable (e.g. /firestore).

type: string

Backend kind, e.g. 'firestore'.