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