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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
},
};
}