lamb-web-lib
Version:
LambWebLib. Es un proyecto angular de tipo Librería. que contiene una Suit de componentes reutilizables para el proyecto [Lamb Financial](https://lamb.upeu.edu.pe).
9 lines (8 loc) • 387 B
TypeScript
import { FormGroup, AbstractControl } from '@angular/forms';
export declare class LambToolsService {
constructor();
getControl(form: FormGroup, controlName: string): AbstractControl;
hasChanges(control: AbstractControl): boolean;
mustShowErrors(form: FormGroup, controlName: string): boolean;
getControlErrors(form: FormGroup, controlName: string): Object;
}