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