src/app/core/models/auth/permission-state.type.ts
Properties |
Readonly Static Allow |
Allow:
|
Type : PermissionState
|
Default value : "Allow"
|
Readonly Static Deny |
Deny:
|
Type : PermissionState
|
Default value : "Deny"
|
export class PermissionStates {
static readonly Allow: PermissionState = "Allow";
static readonly Deny: PermissionState = "Deny";
}
export type PermissionState = "Allow" | "Deny";