adui
Version:
<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>
16 lines (15 loc) • 674 B
TypeScript
export declare const hours: string[];
export declare const minutes: string[];
export declare const seconds: string[];
export declare const transformTimeWithSeconds: (time: string) => string;
export declare const isLegalTimeString: ({ time, onlyHour, }: {
time: string;
onlyHour?: boolean | undefined;
}) => boolean;
export declare const extractHMSFromTime: (time?: string | null) => {
hour: string | null;
minute: string | null;
second: string | null;
};
export declare const isTimeAfter: (t1?: string | null, t2?: string | null) => boolean | "" | null;
export declare const isTimeBefore: (t1?: string | null, t2?: string | null) => boolean | "" | null;