@skireal/form-builder
Version:
Form builder for Angular apps
9 lines (8 loc) • 395 B
TypeScript
import { FormFieldType } from '../constants/ui-constants';
import { LocaleService } from './locale.service';
export declare class ValidationService {
private localeService;
constructor(localeService: LocaleService);
getMissingFieldsMessage(missingFields: string[], fieldType: FormFieldType): string;
getFieldNameById(fieldId: string, fieldType: FormFieldType): string;
}