feat: add properties for whether a message is a reply or user is mentioned and message response to MessageProps

This commit is contained in:
SauceyRed 2025-07-11 03:30:05 +02:00
parent 84b7c01251
commit 21f441bccf
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

@ -1,4 +1,4 @@
import type { UserResponse } from "./interfaces";
import type { MessageResponse, UserResponse } from "./interfaces";
export interface MessageProps {
class?: string,
@ -14,4 +14,7 @@ export interface MessageProps {
replyingTo?: boolean,
editing?: boolean,
me: UserResponse
message: MessageResponse,
replyMessage?: MessageResponse
isMentioned?: boolean,
}