You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
402 B
10 lines
402 B
interface Time {
|
|
hours: number;
|
|
minutes: number;
|
|
}
|
|
export declare const parseTime: (time: string) => null | Time;
|
|
export declare const compareTime: (time1: string, time2: string) => number;
|
|
export declare const padTime: (time: number | string) => string;
|
|
export declare const formatTime: (time: Time) => string;
|
|
export declare const nextTime: (time: string, step: string) => string;
|
|
export {};
|
|
|