mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
Url presets (#807)
This commit is contained in:
@@ -1,17 +1,20 @@
|
||||
import { Alias } from './core/Alias.type.js';
|
||||
import { ProjectData } from './core/ProjectData.type.js';
|
||||
import { OntimeRundown } from './core/Rundown.type.js';
|
||||
import { OSCSettings } from './core/OscSettings.type.js';
|
||||
import { Settings } from './core/Settings.type.js';
|
||||
import { ViewSettings } from './core/Views.type.js';
|
||||
import { CustomFields, HttpSettings } from '../index.js';
|
||||
import {
|
||||
CustomFields,
|
||||
HttpSettings,
|
||||
OSCSettings,
|
||||
OntimeRundown,
|
||||
ProjectData,
|
||||
Settings,
|
||||
URLPreset,
|
||||
ViewSettings,
|
||||
} from '../index.js';
|
||||
|
||||
export type DatabaseModel = {
|
||||
rundown: OntimeRundown;
|
||||
project: ProjectData;
|
||||
settings: Settings;
|
||||
viewSettings: ViewSettings;
|
||||
aliases: Alias[];
|
||||
urlPresets: URLPreset[];
|
||||
customFields: CustomFields;
|
||||
osc: OSCSettings;
|
||||
http: HttpSettings;
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
export type Alias = {
|
||||
export type URLPreset = {
|
||||
enabled: boolean;
|
||||
alias: string;
|
||||
pathAndParams: string;
|
||||
@@ -24,8 +24,8 @@ export type { Settings } from './definitions/core/Settings.type.js';
|
||||
export type { ViewSettings } from './definitions/core/Views.type.js';
|
||||
export type { TimeFormat } from './definitions/core/TimeFormat.type.js';
|
||||
|
||||
// ---> Aliases
|
||||
export type { Alias } from './definitions/core/Alias.type.js';
|
||||
// ---> URL Presets
|
||||
export type { URLPreset } from './definitions/core/UrlPreset.type.js';
|
||||
|
||||
// ---> Custom Fields
|
||||
export type {
|
||||
|
||||
Reference in New Issue
Block a user