mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 18:33:53 +00:00
10 lines
388 B
TypeScript
10 lines
388 B
TypeScript
import { getTimeOption, hideTimerSeconds } from '../../../common/components/view-params-editor/constants';
|
|
import type { ViewOption } from '../../../common/components/view-params-editor/types';
|
|
|
|
export const getStudioClockOptions = (timeFormat: string): ViewOption[] => [
|
|
{ section: 'Clock Options' },
|
|
getTimeOption(timeFormat),
|
|
{ section: 'Timer Options' },
|
|
hideTimerSeconds,
|
|
];
|