mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
refactor: extract rundown parsing
refactor: implement groups in editor
This commit is contained in:
committed by
Carlos Valente
parent
166be66ce3
commit
c616240db1
@@ -7,7 +7,7 @@ export type EventPostPayload = Partial<OntimeEntry> & {
|
||||
before?: string;
|
||||
};
|
||||
|
||||
export type TransientEventPayload = Partial<OntimeEvent | OntimeDelay | OntimeBlock> & {
|
||||
export type TransientEventPayload = Partial<OntimeEntry> & {
|
||||
after?: string;
|
||||
before?: string;
|
||||
};
|
||||
|
||||
@@ -16,6 +16,7 @@ export type OntimeBaseEvent = {
|
||||
export type OntimeDelay = OntimeBaseEvent & {
|
||||
type: SupportedEntry.Delay;
|
||||
duration: number;
|
||||
parent: EntryId | null;
|
||||
};
|
||||
|
||||
export type OntimeBlock = OntimeBaseEvent & {
|
||||
|
||||
Reference in New Issue
Block a user