Group Typing Bubble Animations

This commit is contained in:
ayumi-signal 2023-09-27 17:23:52 -04:00 committed by GitHub
parent 88df942029
commit 283ef57779
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 565 additions and 209 deletions

View file

@ -217,7 +217,11 @@ export class ConversationModel extends window.Backbone
contactTypingTimers?: Record<
string,
{ senderId: string; timer: NodeJS.Timer }
{
senderId: string;
timer: NodeJS.Timer;
timestamp: number;
}
>;
contactCollection?: Backbone.Collection<ConversationModel>;