mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 10:28:03 +01:00
Show "unplayed" dot on incoming audio messages
This commit is contained in:
@@ -399,3 +399,19 @@ export class ReadSyncEvent extends ConfirmableEvent {
|
||||
super('readSync', confirm);
|
||||
}
|
||||
}
|
||||
|
||||
export type ViewSyncEventData = Readonly<{
|
||||
timestamp?: number;
|
||||
envelopeTimestamp: number;
|
||||
senderE164?: string;
|
||||
senderUuid?: string;
|
||||
}>;
|
||||
|
||||
export class ViewSyncEvent extends ConfirmableEvent {
|
||||
constructor(
|
||||
public readonly view: ViewSyncEventData,
|
||||
confirm: ConfirmCallback
|
||||
) {
|
||||
super('viewSync', confirm);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user