From 21f441bccf7a4b87f838c8fac58314e024f6330e Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Fri, 11 Jul 2025 03:30:05 +0200 Subject: [PATCH] feat: add properties for whether a message is a reply or user is mentioned and message response to MessageProps --- types/props.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types/props.ts b/types/props.ts index f97405d..aa6ff0c 100644 --- a/types/props.ts +++ b/types/props.ts @@ -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, } \ No newline at end of file