Skip to content

Type Alias: SttEvent

SttEvent = { status: SttStatus; type: "status"; } | { segment: number; text: string; type: "delta"; } | { result: SttFinal; segment: number; type: "final"; } | { message: string; segment?: number; type: "error"; } | { diagnostic: SttDiagnostic; type: "diagnostic"; }

Defined in: types.ts:154

The event stream ../reactive.sttSignals (and any observer) consumes.