@nova-ui/dashboards
Version:
Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and
9 lines (8 loc) • 450 B
TypeScript
import { AbstractControl } from "@angular/forms";
/**
* This is the only way to be notified of the parent form control being "touched"
* We replace the parent formControl method with our own implementation that also calls the original function
* @param formControl
* @param callback Run this callback when the `formControl.markAsTouched` is run
*/
export declare function onMarkAsTouched(formControl: AbstractControl, callback: Function): void;