9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
export enum MessageRequestResponseEvent {
|
|
ACCEPT = 'ACCEPT',
|
|
BLOCK = 'BLOCK',
|
|
UNBLOCK = 'UNBLOCK',
|
|
SPAM = 'SPAM',
|
|
}
|