EventType
String union of all possible event type identifiers.
type EventType = CompositeVoiceEvent["type"];
Defined in: src/core/events/types.ts:1004
String union of all possible event type identifiers.
Remarks
Derived from the type discriminant field of CompositeVoiceEvent. Use this type when you need to reference event type strings without importing each individual event interface.
Example
const eventTypes: EventType[] = [
'transcription.final',
'llm.complete',
'tts.complete',
];
See
CompositeVoiceEvent for the full event union