with output type

pull/21833/head
Zoe 2020-03-27 13:51:30 +00:00
parent 5b7e7f49d1
commit 1f0d7923d7
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ interface Room {
roomId: string;
}
export async function shieldStatusForMembership(client: Client, room: Room) {
export async function shieldStatusForMembership(client: Client, room: Room): Promise<string> {
const members = (await room.getEncryptionTargetMembers()).map(({userId}) => userId);
const inDMMap = !!DMRoomMap.shared().getUserIdForRoomId(room.roomId);