mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export type ReactionType = Readonly<{
|
|
conversationId: string;
|
|
emoji: string;
|
|
fromId: string;
|
|
messageId: string;
|
|
messageReceivedAt: number;
|
|
targetAuthorUuid: string;
|
|
targetTimestamp: number;
|
|
}>;
|