fix terminal popup release behavior (#1403)

This commit is contained in:
陈大猫
2026-06-11 14:48:52 +08:00
committed by GitHub
parent afefbd953f
commit 9013a7e312
29 changed files with 705 additions and 84 deletions

View File

@@ -105,6 +105,11 @@ declare global {
error?: string;
popupId?: string;
}>;
logDiagnostic?(payload: {
source: string;
message: string;
extra?: Record<string, unknown>;
}): Promise<{ success: boolean; error?: string }>;
onTerminalPopupConfig?(cb: (payload: import("../../domain/systemManager/types").TerminalPopupPayload) => void): () => void;
}
}