Represents the permission type for custom data.

interface PermissionType {
    read?: string[];
    write?: string[];
}

Properties

Properties

read?: string[]
write?: string[]