@progress/kendo-vue-dateinputs
Version:
18 lines (17 loc) • 645 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* The arguments for the `change` event of the DateInput.
* The generic argument sets the target type of the event. Defaults to `DateInput`.
*/
export interface DateInputChangeEvent {
event?: any;
value: Date | null;
component: any;
target: any;
}