fix httpPlaceholder

This commit is contained in:
arc-alex
2023-11-19 21:28:29 +01:00
parent 95bb9b4366
commit c30b0cbf0a
+11 -24
View File
@@ -1,26 +1,13 @@
export const httpPlaceholder = { import { HTTPSettings } from 'ontime-types';
onLoad: {
url: '', export const httpPlaceholder: HTTPSettings = {
enabled: false, enabledOut: false,
}, subscriptions: {
onStart: { onLoad: [],
url: '', onStart: [],
enabled: false, onUpdate: [],
}, onPause: [],
onUpdate: { onStop: [],
url: '', onFinish: [],
enabled: false,
},
onPause: {
url: '',
enabled: false,
},
onStop: {
url: '',
enabled: false,
},
onFinish: {
url: '',
enabled: false,
}, },
}; };