Add type to ConversationModel's contactCollection

Previously, this was `Backbone.Collection<WhatIsThis>`. Now, it's
`Backbone.Collection<ConversationModel>`.

A minor change, but an easy improvement that (luckily) had no
downstream effects.
This commit is contained in:
Evan Hahn 2021-03-26 11:36:57 -05:00 committed by GitHub
parent 990e501850
commit 83593a3216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ export class ConversationModel extends window.Backbone.Model<
{ senderId: string; timer: NodeJS.Timer }
>;
contactCollection?: Backbone.Collection<WhatIsThis>;
contactCollection?: Backbone.Collection<ConversationModel>;
debouncedUpdateLastMessage?: () => void;