From 1f5368742e8b0b6893507eec835e630cfd8eedae Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Fri, 23 Apr 2021 09:04:05 -0500 Subject: [PATCH] Add type for ConversationModel `profileAvatar` --- ts/model-types.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/model-types.d.ts b/ts/model-types.d.ts index 590f200fbe..b0e824e212 100644 --- a/ts/model-types.d.ts +++ b/ts/model-types.d.ts @@ -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;