mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
refactor: prepare rundown loading process
This commit is contained in:
committed by
Carlos Valente
parent
c6c1e4a5d7
commit
3ce5b42e05
@@ -12,9 +12,14 @@ export type TransientEventPayload = Partial<OntimeEntry> & {
|
||||
before?: string;
|
||||
};
|
||||
|
||||
export type ProjectRundownsList = {
|
||||
export type ProjectRundown = {
|
||||
id: string;
|
||||
title: string;
|
||||
numEntries: number;
|
||||
revision: number;
|
||||
}[];
|
||||
};
|
||||
|
||||
export type ProjectRundownsList = {
|
||||
loaded: string;
|
||||
rundowns: ProjectRundown[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user