mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 02:13:48 +00:00
17 lines
434 B
TypeScript
17 lines
434 B
TypeScript
/**
|
|
* Gathers possible titles for view options
|
|
*/
|
|
export enum OptionTitle {
|
|
ClockOptions = 'Clock Options',
|
|
TimerOptions = 'Timer Options',
|
|
DataSources = 'Data sources',
|
|
ElementVisibility = 'Element visibility',
|
|
BehaviourOptions = 'View behaviour',
|
|
StyleOverride = 'View style override',
|
|
Animation = 'View animation',
|
|
Schedule = 'Schedule options',
|
|
|
|
/** rendered as hidden inputs */
|
|
Hidden = 'Hidden options',
|
|
}
|