forked from mystiq/hydrogen-web
add return type
This commit is contained in:
parent
21065791a8
commit
5ee4e39bc7
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ export type Options = Omit<GroupCallOptions, "emitUpdate" | "createTimeout"> & {
|
|||
clock: Clock
|
||||
};
|
||||
|
||||
function getRoomMemberKey(roomId: string, userId: string) {
|
||||
function getRoomMemberKey(roomId: string, userId: string): string {
|
||||
return JSON.stringify(roomId)+`,`+JSON.stringify(userId);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue