refactor: prepare rundown loading process

This commit is contained in:
Carlos Valente
2025-07-03 17:24:34 +02:00
committed by Carlos Valente
parent c6c1e4a5d7
commit 3ce5b42e05
9 changed files with 171 additions and 10 deletions
@@ -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[];
};