mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-19 22:24:11 +00:00
7 lines
287 B
TypeScript
7 lines
287 B
TypeScript
import { getTimeOption } from '../../../common/components/view-params-editor/constants';
|
|
import { ViewOption } from '../../../common/components/view-params-editor/types';
|
|
|
|
export const getTimelineOptions = (timeFormat: string): ViewOption[] => {
|
|
return [getTimeOption(timeFormat)];
|
|
};
|