feat: add interface to hanle date picker event data

This commit is contained in:
RohitR311
2024-12-18 18:21:05 +05:30
parent 7ac79dc31c
commit 7eea077e70

View File

@@ -20,6 +20,16 @@ export interface Coordinates {
y: number;
}
/**
* interface to handle date picker events.
* @category Types
*/
export interface DatePickerEventData {
coordinates: Coordinates;
selector: string;
value: string;
}
/**
* Holds the deltas of a wheel/scroll event.
* @category Types