Type Alias: EventSource
type EventSource =
| "import"
| "migration"
| "system"
| "user";
Defined in: electron/events/eventTypes.ts:160
Source that triggered an event.
Remarks
Indicates the origin of an event, such as user action, system process, or data migration.
Example
const source: EventSource = "system";