@rxap/forms
Version:
This package provides a set of tools and directives to simplify working with Angular forms, including reactive forms, custom validators, and form directives for handling loading, submitting, and error states. It offers decorators for defining forms and co
15 lines (14 loc) • 775 B
TypeScript
import { AfterViewInit, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
import { FormDirective } from './form.directive';
import * as i0 from "@angular/core";
export declare class FormSubmittingDirective implements AfterViewInit, OnDestroy {
private readonly formDirective;
private readonly template;
private readonly viewContainerRef;
private subscription?;
constructor(formDirective: FormDirective, template: TemplateRef<void>, viewContainerRef: ViewContainerRef);
ngAfterViewInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<FormSubmittingDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<FormSubmittingDirective, "[rxapFormSubmitting]", never, {}, {}, never, never, true, never>;
}