projects/ng-dynamic-forms/core/src/lib/component/dynamic-form-control-with-template-interface.ts
Properties |
templateDirectives |
templateDirectives:
|
Type : Map<string | string>
|
viewChild |
viewChild:
|
Type : any
|
import { DynamicFormControl } from "./dynamic-form-control-interface";
export interface DynamicFormControlWithTemplate extends DynamicFormControl {
readonly templateDirectives: Map<string, string>;
viewChild: any;
}