Package version:

Interface PosixRolePermissions

Represents file permissions for a specific role.

interface PosixRolePermissions {
    execute: boolean;
    read: boolean;
    write: boolean;
}

Properties

Properties

execute: boolean

The execute permission.

read: boolean

The read permission.

write: boolean

The write permission.