Workflow funktioniert nun wieder. Es gab Probleme nach Aenderungen.
Build and Publish Site / docker (push) Successful in 23s

ABER: Die Applikation funktioniert nur lokal. Die deployte Version geht noch nicht.
This commit is contained in:
2026-07-03 13:24:08 +02:00
parent 97a22cf704
commit b518ae8edb
1845 changed files with 292358 additions and 57 deletions
+36
View File
@@ -0,0 +1,36 @@
declare namespace parseMilliseconds {
interface Parsed {
days: number;
hours: number;
minutes: number;
seconds: number;
milliseconds: number;
microseconds: number;
nanoseconds: number;
}
}
/**
Parse milliseconds into an object.
@example
```
import parseMilliseconds = require('parse-ms');
parseMilliseconds(1337000001);
// {
// days: 15,
// hours: 11,
// minutes: 23,
// seconds: 20,
// milliseconds: 1,
// microseconds: 0,
// nanoseconds: 0
// }
```
*/
declare function parseMilliseconds(
milliseconds: number
): parseMilliseconds.Parsed;
export = parseMilliseconds;