@webdev-tools/ng-nested-reactive-forms
Version:
Implement Nested FormControl for Angular Reactive Forms.
13 lines (12 loc) • 478 B
TypeScript
import { EventEmitter, Provider } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { NrfSubmitData } from './form-submit-data.class';
export declare class NrfFormService {
readonly formGroup: FormGroup;
private privateEntity;
entity: any;
formData: any;
readonly submit$: EventEmitter<NrfSubmitData>;
}
export declare function newNrfFormService(): NrfFormService;
export declare const NRF_FORM_SERVICE_PROVIDER: Provider;