Add type for ConversationModel profileAvatar

This commit is contained in:
Evan Hahn 2021-04-23 09:04:05 -05:00 committed by Scott Nonnenberg
parent ed68c34ee2
commit 1f5368742e

5
ts/model-types.d.ts vendored
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;