refactor: extract utility type

This commit is contained in:
Carlos Valente
2024-12-20 12:39:04 +01:00
committed by Carlos Valente
parent 4cbe25a845
commit 2fc4e6da16
3 changed files with 7 additions and 7 deletions
@@ -45,3 +45,4 @@ export type OntimeEvent = OntimeBaseEvent & {
};
export type PlayableEvent = OntimeEvent & { skip: false };
export type TimeField = 'timeStart' | 'timeEnd' | 'duration';
+1
View File
@@ -9,6 +9,7 @@ export {
type OntimeBlock,
type OntimeEvent,
type PlayableEvent,
type TimeField,
SupportedEvent,
} from './definitions/core/OntimeEvent.type.js';
export type { OntimeEntryCommonKeys, OntimeRundown, OntimeRundownEntry } from './definitions/core/Rundown.type.js';