[MM-51514] Allow Calls widget to open user settings (#3109)

* Allow Calls widget to open user settings

* Bump api-types version

* Bump
This commit is contained in:
Claudio Costa
2024-07-24 17:56:45 +02:00
committed by GitHub
parent 314f7ab96f
commit e2cc1cee4b
8 changed files with 16 additions and 3 deletions

View File

@@ -24,4 +24,5 @@ export interface ExternalAPI {
createListener(event: 'desktop-sources-modal-request', listener: () => void): () => void;
createListener(event: 'calls-widget-open-thread', listener: (threadID: string) => void): () => void;
createListener(event: 'calls-widget-open-stop-recording-modal', listener: (channelID: string) => void): () => void;
createListener(event: 'calls-widget-open-user-settings', listener: () => void): () => void;
}