igniteui-angular
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
10 lines (9 loc) • 326 B
TypeScript
import { IBaseEventArgs } from '../core/utils';
/**
* Provides information about date picker reference and its previously valid value
* when onValidationFailed event is fired.
*/
export interface IDatePickerValidationFailedEventArgs extends IBaseEventArgs {
prevValue: Date | string;
currentValue: Date | string;
}