更新bug
This commit is contained in:
Vendored
+13
@@ -29,6 +29,8 @@ interface DoctorConsultationApi {
|
||||
startVideo(): Promise<void>
|
||||
hangup(): Promise<void>
|
||||
hostCallReady(ok: boolean, message?: string): void
|
||||
recordingResult(ok: boolean, message: string): void
|
||||
roomBindingResult(roomId: string, ok: boolean, message: string): void
|
||||
screenshotResult(ok: boolean, message: string): void
|
||||
transcriptionResult(
|
||||
operation: 'start' | 'segment' | 'stop',
|
||||
@@ -37,11 +39,22 @@ interface DoctorConsultationApi {
|
||||
ok: boolean,
|
||||
message: string,
|
||||
): void
|
||||
localRecordingResult(
|
||||
operation: 'start' | 'chunk' | 'finish',
|
||||
sessionId: string,
|
||||
sequence: number,
|
||||
ok: boolean,
|
||||
message: string,
|
||||
): void
|
||||
}
|
||||
|
||||
interface QtVideoBridge {
|
||||
notify?: (payload: string) => void
|
||||
saveScreenshot?: (dataUrl: string) => void
|
||||
startLocalAudioRecording?: (sessionId: string, mimeType: string) => void
|
||||
appendLocalAudioChunk?: (sessionId: string, sequence: number, encoded: string) => void
|
||||
finishLocalAudioRecording?: (sessionId: string, totalBytes: number) => void
|
||||
abortLocalAudioRecording?: (sessionId: string) => void
|
||||
}
|
||||
|
||||
interface Window {
|
||||
|
||||
Reference in New Issue
Block a user