feat: eventsAPI

This commit is contained in:
cv
2021-04-10 11:39:53 +02:00
parent e2561bcd54
commit e62b79f84e
13 changed files with 384 additions and 193 deletions
+23
View File
@@ -0,0 +1,23 @@
const event = {
order: 0,
title: '',
subtitle: '',
presenter: '',
timeStart: new Date(),
timeEnd: new Date(),
clockStarted: null,
type: 'event',
};
const delay = {
order: 0,
timerDuration: 0,
type: 'delay',
};
const block = {
order: 0,
type: 'block',
};
module.exports = { event, delay, block };