import type { MonitorId } from "./MonitorId.js"; import type { TwmRuntimeTree } from "./TwmRuntimeTree.js"; import type { WorkspaceId } from "./WorkspaceId.js"; export type TwmGlobalRuntimeTree = { workspaces: { [key in WorkspaceId]: TwmRuntimeTree; }; paused: boolean; pausedByMonitor: { [key in MonitorId]: boolean; }; }; //# sourceMappingURL=TwmGlobalRuntimeTree.d.ts.map