Send/Receive support for reaction read syncs

This commit is contained in:
Josh Perez
2021-05-06 18:15:25 -07:00
committed by GitHub
parent 82a9705010
commit e0c324e4ba
23 changed files with 1188 additions and 498 deletions

11
ts/types/Reactions.ts Normal file
View File

@@ -0,0 +1,11 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export type ReactionType = Readonly<{
conversationId: string;
emoji: string;
fromId: string;
messageReceivedAt: number;
targetAuthorUuid: string;
targetTimestamp: number;
}>;