mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
6facd6a666
- consistent behaviour for app mode - improve navigation
17 lines
384 B
TypeScript
17 lines
384 B
TypeScript
export const tooltipDelaySlow = 1000;
|
|
export const tooltipDelayMid = 500;
|
|
export const tooltipDelayFast = 300;
|
|
|
|
export const queryRefetchInterval = 60000; // 60 seconds
|
|
export const queryRefetchIntervalSlow = 120000; // 120 seconds
|
|
|
|
export const sessionKeys = {
|
|
cuesheetMode: 'cuesheet-mode',
|
|
editorMode: 'editor-mode',
|
|
};
|
|
|
|
export enum AppMode {
|
|
Run = 'run',
|
|
Edit = 'edit',
|
|
}
|