feat(MessageFlags): EPHEMERAL desc and added LOADING (#109)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Advaith
2021-04-08 14:09:01 +03:00
committed by GitHub
co-authored by github-actions[bot]
parent 679a5cfd77
commit 4462255168
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -435,7 +435,14 @@ export enum MessageFlags {
* This message came from the urgent message system
*/
URGENT = 1 << 4,
/**
* This message is only visible to the user who invoked the Interaction
*/
EPHEMERAL = 1 << 6,
/**
* This message is an Interaction Response and the bot is "thinking"
*/
LOADING = 1 << 7,
}
/**
+7
View File
@@ -435,7 +435,14 @@ export const enum MessageFlags {
* This message came from the urgent message system
*/
URGENT = 1 << 4,
/**
* This message is only visible to the user who invoked the Interaction
*/
EPHEMERAL = 1 << 6,
/**
* This message is an Interaction Response and the bot is "thinking"
*/
LOADING = 1 << 7,
}
/**