Interface PermissionParamsInterface

Permission parameters interface

Used to define the parameters for a permission.

interface PermissionParamsInterface {
    action: string | string[];
    resource: string | string[];
}

Properties

Properties

action: string | string[]
resource: string | string[]