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 04:09:01 -07:00
committed by GitHub
parent 679a5cfd77
commit 4462255168
2 changed files with 14 additions and 0 deletions

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,
}
/**

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,
}
/**