Skip to main content

Type Alias: MonitoringStoppedEventData

type MonitoringStoppedEventData = Except<
MonitoringControlEventData,
| "activeMonitors"
| "reason"
| "summary"
> & {
activeMonitors: number;
reason: MonitoringControlReason;
summary?: MonitoringStopSummary;
};

Defined in: shared/types/events.ts:767

Canonical payload for monitoring stop events emitted to renderer listeners.

Type Declarationโ€‹

activeMonitorsโ€‹

readonly activeMonitors: number;

reasonโ€‹

readonly reason: MonitoringControlReason;

summary?โ€‹

readonly optional summary?: MonitoringStopSummary;