Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-18 01:09:00 +01:00
parent b47db3cf05
commit 1ab38c4c87
6 changed files with 13 additions and 5 deletions

View File

@@ -5,9 +5,10 @@ export declare class TimeSpan {
private parseTime;
contains(timestamp?: number): boolean;
}
export declare function calculateSecondsBetween(start: number, end: number): {
export interface TimeBetween {
seconds: number;
toReadable: (roundToMinutes?: boolean) => string;
};
}
export declare function calculateSecondsBetween(start: number, end: number): TimeBetween;
export declare function secondsToReadable(secs: number, roundToMinutes?: boolean): string;
//# sourceMappingURL=timehelper.d.ts.map