Files
Signal-Desktop/ts/types/Reactions.ts
2021-05-06 21:15:25 -04:00

12 lines
270 B
TypeScript

// 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;
}>;