wfw-ngx-formly
Version:
ngx-formly is an Angular 2 module which has a Components to help customize and render JavaScript/JSON configured forms. The formly-form Component and the FormlyConfig service are very powerful and bring unmatched maintainability to your application's form
11 lines (10 loc) • 388 B
TypeScript
import { FormControl } from '@angular/forms';
import { FormlyConfig } from '../services/formly.config';
import { FormlyFieldConfig } from '../components/formly.field.config';
export declare class FormlyValidationMessage {
private formlyConfig;
field: FormlyFieldConfig;
fieldForm: FormControl;
constructor(formlyConfig: FormlyConfig);
readonly errorMessage: string;
}