前端初始化
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
//#region ../../packages/components/time-select/src/utils.d.ts
|
||||
interface Time {
|
||||
hours: number;
|
||||
minutes: number;
|
||||
}
|
||||
declare const parseTime: (time: string) => null | Time;
|
||||
declare const isValidTime: (time: null | Time) => time is Time;
|
||||
declare const compareTime: (time1: string, time2: string) => number;
|
||||
declare const padTime: (time: number | string) => string;
|
||||
declare const formatTime: (time: Time) => string;
|
||||
declare const nextTime: (time: string, step: string) => string;
|
||||
//#endregion
|
||||
export { compareTime, formatTime, isValidTime, nextTime, padTime, parseTime };
|
||||
Reference in New Issue
Block a user