Type Alias: EventEnvironment
EventEnvironment =
"development"
|"production"
|"test"
Defined in: electron/events/eventTypes.ts:1457
Runtime environment where the event occurred.
Remarks
Used for distinguishing between development, production, and test environments in event payloads.
Example
const env: EventEnvironment = "production";