fix(types): Specify that IsComponentV2 is permanent (#4202)

This commit is contained in:
Fleny
2025-06-01 08:24:24 +02:00
committed by GitHub
parent ef5cf54c66
commit b537c06a72
+6 -1
View File
@@ -194,7 +194,12 @@ export enum MessageFlags {
IsVoiceMessage = 1 << 13,
/** This message has a snapshot (via Message Forwarding) */
HasSnapshot = 1 << 14,
/** Allows you to create fully component driven messages */
/**
* Allows you to create fully component driven messages
*
* @remarks
* Once a message has been sent with this flag, it can't be removed from that message.
*/
IsComponentV2 = 1 << 15,
}