Files
Signal-Desktop/ts/types/Reactions.ts
2023-08-21 09:30:33 -07:00

15 lines
340 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { AciString } from './ServiceId';
export type ReactionType = Readonly<{
conversationId: string;
emoji: string;
fromId: string;
messageId: string;
messageReceivedAt: number;
targetAuthorAci: AciString;
targetTimestamp: number;
}>;