Workflow funktioniert nun wieder. Es gab Probleme nach Aenderungen.
Build and Publish Site / docker (push) Successful in 23s
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:
+36
@@ -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;
|
||||
Reference in New Issue
Block a user