util.d.ts 275 Bytes
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;
}