Stub out speechEvent callback

This commit is contained in:
Miriam Zimmerman
2024-11-18 18:03:36 -05:00
committed by GitHub
parent d768e56d4b
commit 0c707975d8

View File

@@ -1479,8 +1479,8 @@ export class CallingClass {
endedReason,
});
},
onSpeechEvent: (_groupCall: GroupCall, event: SpeechEvent) => {
log.info('GroupCall#onSpeechEvent', event);
onSpeechEvent: (_groupCall: GroupCall, _event: SpeechEvent) => {
// Implementation to come later
},
};
}