Add type for ConversationModel profileAvatar

This commit is contained in:
Evan Hahn
2021-04-29 14:27:36 -07:00
committed by Scott Nonnenberg
parent ed68c34ee2
commit 1f5368742e
+4 -1
View File
@@ -203,7 +203,10 @@ export type ConversationAttributesType = {
messageCountBeforeMessageRequests?: number | null;
messageRequestResponseType?: number;
muteExpiresAt?: number;
profileAvatar?: WhatIsThis;
profileAvatar?: null | {
hash: string;
path: string;
};
profileKeyCredential?: string | null;
profileKeyVersion?: string | null;
quotedMessageId?: string | null;