mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 07:28:01 +00:00
24 lines
325 B
JavaScript
24 lines
325 B
JavaScript
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 };
|