mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
16 lines
267 B
TypeScript
16 lines
267 B
TypeScript
import type { QuickStartData } from 'ontime-types';
|
|
|
|
export const quickStartDefaults: QuickStartData = {
|
|
project: {
|
|
title: '',
|
|
},
|
|
settings: {
|
|
timeFormat: '24',
|
|
language: 'en',
|
|
},
|
|
viewSettings: {
|
|
freezeEnd: false,
|
|
endMessage: '',
|
|
},
|
|
};
|