util.d.ts 275 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 export declare class Util { static getISODate(): string; static getDateInMinutes(): number; /** * convert a time input to minutes * e.g. 23:59 = 1439 */ static convertToMinutes(time: string): number; static calculateNextMinute(): number; }