mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
21 lines
442 B
TypeScript
21 lines
442 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { AciString } from './ServiceId.std.js';
|
|
|
|
export type ReactionType = Readonly<{
|
|
conversationId: string;
|
|
emoji: string;
|
|
fromId: string;
|
|
messageId: string;
|
|
messageReceivedAt: number;
|
|
targetAuthorAci: AciString;
|
|
targetTimestamp: number;
|
|
timestamp: number;
|
|
}>;
|
|
|
|
export enum ReactionReadStatus {
|
|
Unread = 'Unread',
|
|
Read = 'Read',
|
|
}
|