This commit is contained in:
Carlos Valente
2023-02-20 18:28:54 +01:00
committed by GitHub
parent 63d763cbaf
commit d8a84ac88d
18 changed files with 79 additions and 20 deletions
@@ -0,0 +1,7 @@
enum TimerType {
CountDown = 'count-down',
CountUp = 'count-up',
Clock = 'clock'
}
export default TimerType
+3
View File
@@ -0,0 +1,3 @@
import TimerType from './definitions/TimerType.js';
export { TimerType };