feat: event timer

This commit is contained in:
cv
2021-04-10 15:25:34 +02:00
parent 01e911eb24
commit 7293b0dfd9
3 changed files with 95 additions and 8 deletions
+6 -1
View File
@@ -1,3 +1,9 @@
/*
* Timer implements simple countdown timer functions
* User needs to use setup function to be able to use
*
*/
class Timer {
_current = null;
_finishAt = null;
@@ -116,5 +122,4 @@ class Timer {
}
}
module.exports = Timer;