Interface TranscriptionController

interface TranscriptionController {
    subscribeToTranscriptEvent(
        callback: (transcriptEvent: TranscriptEvent) => void,
    ): void;
    unsubscribeFromTranscriptEvent(
        callback: (transcriptEvent: TranscriptEvent) => void,
    ): void;
}

Implemented by

Methods

  • Subscribe a callback to handle received transcript event

    Parameters

    Returns void

  • Unsubscribe a callback from receiving transcript event

    Parameters

    Returns void