Show "unplayed" dot on outgoing audio messages

This commit is contained in:
Evan Hahn 2021-07-27 10:42:25 -05:00 committed by GitHub
parent b73c029d5f
commit 14929fb408
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 219 additions and 60 deletions

3
ts/model-types.d.ts vendored
View file

@ -37,7 +37,8 @@ export type LastMessageStatus =
| 'sending'
| 'sent'
| 'delivered'
| 'read';
| 'read'
| 'viewed';
type TaskResultType = any;