@alauda/ui 6.1.5-beta.0 → 6.1.5-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5,9 +5,9 @@ export declare enum TimePickerControlType {
|
|
|
5
5
|
Second = "second"
|
|
6
6
|
}
|
|
7
7
|
export interface TimePickerModel {
|
|
8
|
-
hour
|
|
9
|
-
minute
|
|
10
|
-
second
|
|
8
|
+
hour?: number;
|
|
9
|
+
minute?: number;
|
|
10
|
+
second?: number;
|
|
11
11
|
}
|
|
12
12
|
export declare type TimePickerDataLike = ConfigType | TimePickerModel;
|
|
13
13
|
export declare function isTimePickerModel(item: any): item is TimePickerModel;
|