MM-52857 - Add call-join-request to calls widget (#2751)

* add call-join-request to calls widget

* targetID -> callID

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
This commit is contained in:
Christopher Poile
2023-06-26 10:17:47 -04:00
committed by GitHub
parent 850573326c
commit 0728ddf42f
6 changed files with 71 additions and 2 deletions

View File

@@ -34,4 +34,8 @@ export type CallsLinkClickMessage = {
link: string | URL;
}
export type CallsJoinRequestMessage = {
callID: string;
}
export type CallsEventHandler = ((viewName: string, msg: any) => void) | ((viewName: string, opts: Electron.SourcesOptions) => Promise<void>);