revbot.js
    Preparing search index...

    Type Alias editablePermissions

    Represents the permissions that can be set for a role.

    type editablePermissions = {
        a?: (keyof typeof FullPermissions["FLAGS"])[];
        d?: (keyof typeof FullPermissions["FLAGS"])[];
    }
    Index

    Properties

    Properties

    a?: (keyof typeof FullPermissions["FLAGS"])[]

    Permissions to allow for the role. Each key corresponds to a permission flag in FullPermissions.

    d?: (keyof typeof FullPermissions["FLAGS"])[]

    Permissions to deny for the role. Each key corresponds to a permission flag in FullPermissions.