[MM-57964] Implement openThread and openStopRecordingModal (#3073)

* Implement API to open thread from Calls widget

* Stop recording modal

* Rename
This commit is contained in:
Claudio Costa
2024-06-20 18:42:21 +02:00
committed by GitHub
parent d3a76caeef
commit c0e2b2a0e7
7 changed files with 100 additions and 1 deletions

View File

@@ -59,5 +59,9 @@ export type DesktopAPI = {
onJoinCallRequest: (listener: (callID: string) => void) => () => void;
openLinkFromCalls: (url: string) => void;
focusPopout: () => void;
openThreadForCalls: (threadID: string) => void;
onOpenThreadForCalls: (listener: (threadID: string) => void) => () => void;
openStopRecordingModal: (channelID: string) => void;
onOpenStopRecordingModal: (listener: (channelID: string) => void) => () => void;
unregister: (channel: string) => void;
};