igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
11 lines (9 loc) • 327 B
text/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;
}