libs/nx/src/executors/introspection/compat/__test/example-library/src/other/with-get-form-method.ts
Properties |
Methods |
form |
Type : FormGroupTyped<MyFormType>
|
getForm |
getForm()
|
Returns :
FormGroupTyped<MyFormType>
|
import { FormGroupTyped } from '@allianz/taly-common';
import { AbstractBuildingBlock } from '@allianz/taly-core';
import { MyFormType } from './form';
export class MyBuildingBlockFormComponent extends AbstractBuildingBlock {
form: FormGroupTyped<MyFormType>;
getForm() {
return this.form;
}
}