Files
Signal-Desktop/ts/types/Reactions.ts
2021-07-15 16:48:09 -07:00

13 lines
303 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 | undefined;
messageReceivedAt: number;
targetAuthorUuid: string;
targetTimestamp: number;
}>;