Project manager (#697)

* Project manager: Load, Rename, Duplicate (#712)

* Project Manager: Create, Delete (#723)
This commit is contained in:
Ary
2024-01-29 06:06:33 -07:00
committed by GitHub
parent 4c77d26a71
commit 3c83f4d15b
16 changed files with 473 additions and 69 deletions
@@ -26,6 +26,8 @@ export type ProjectFileListResponse = {
lastLoadedProject: string;
};
export type ErrorResponse = {
export type MessageResponse = {
message: string;
};
export type ErrorResponse = MessageResponse;
+1
View File
@@ -46,6 +46,7 @@ export type {
ProjectFile,
ErrorResponse,
ProjectFileListResponse,
MessageResponse,
} from './api/ontime-controller/BackendResponse.type.js';
export type { GetRundownCached } from './api/rundown-controller/BackendResponse.type.js';