UNPKG

ng2-simple-forms

Version:

A simple(ish) module for creating accessible, reactive forms.

15 lines (14 loc) 414 B
import { OnInit } from '@angular/core'; import { FormElement } from '../../../../simple-forms.types'; export declare class ValidationContainerComponent implements OnInit { valid: boolean; invalid: boolean; showHelp: boolean; showError: boolean; elementData: FormElement; cssClassOverride: string; helpVisible: boolean; constructor(); ngOnInit(): void; toggleHelp(): void; }