ngx-reactive-forms-utils
Version:
Reactive forms in Angular are a great way to manage forms. This library provides utilities that make it easier to work with reactive forms.
14 lines (13 loc) • 785 B
TypeScript
import { SimpleChanges } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { FormDebugField, FormDebugValue } from '../form-debug.util';
import { EMPTY, Observable } from 'rxjs';
import * as i0 from "@angular/core";
export declare class FormDebugDisplayComponent {
debugFields: FormDebugField[];
form: FormGroup;
debugData$: Observable<FormDebugValue | typeof EMPTY>;
ngOnChanges(changes: SimpleChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration<FormDebugDisplayComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<FormDebugDisplayComponent, "ngx-form-debug-display", never, { "debugFields": { "alias": "debugFields"; "required": false; }; "form": { "alias": "form"; "required": true; }; }, {}, never, never, true, never>;
}