libs/acl/form-support/src/lib/support/acl-control-item.ts
Properties |
aclKey | |
Type |
string
|
control | |
Type |
AbstractControl
|
controlKey | |
Type |
string
|
import { AbstractControl } from '@angular/forms';
export interface AclControlItem {
aclKey: string;
controlKey: string;
control: AbstractControl;
}