feat: add error handling screen and logging functionality

This commit is contained in:
2026-06-04 14:09:27 +02:00
parent 6952a9954f
commit 982c771e82
16 changed files with 250 additions and 98 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ export type NodecgProcessManager = {
getState: () => NodecgProcessState;
};
export type NodecgProcessState = "idle" | "starting" | "running" | "stopping" | "stopped" | "failed";
type NodecgProcessState = "idle" | "starting" | "running" | "stopping" | "stopped" | "failed";
export function createNodecgProcessManager({
isDev,