mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 23:18:01 +00:00
23 lines
290 B
JavaScript
23 lines
290 B
JavaScript
const event = {
|
|
title: '',
|
|
subtitle: '',
|
|
presenter: '',
|
|
note: '',
|
|
timeStart: 0,
|
|
timeEnd: 0,
|
|
isPublic: false,
|
|
type: 'event',
|
|
revision: 0,
|
|
};
|
|
|
|
const delay = {
|
|
duration: 0,
|
|
type: 'delay',
|
|
};
|
|
|
|
const block = {
|
|
type: 'block',
|
|
};
|
|
|
|
module.exports = { event, delay, block };
|