mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
Add support for new game types (#1777)
This commit is contained in:
@@ -349,6 +349,21 @@ exports.MessageTypes = [
|
||||
'GUILD_MEMBER_JOIN',
|
||||
];
|
||||
|
||||
/**
|
||||
* The type of a game of a users presence, e.g. `PLAYING`. Here are the available types:
|
||||
* - PLAYING
|
||||
* - STREAMING
|
||||
* - LISTENING
|
||||
* - WATCHING
|
||||
* @typedef {string} GameType
|
||||
*/
|
||||
exports.GameTypes = [
|
||||
'PLAYING',
|
||||
'STREAMING',
|
||||
'LISTENING',
|
||||
'WATCHING',
|
||||
];
|
||||
|
||||
exports.ExplicitContentFilterTypes = [
|
||||
'DISABLED',
|
||||
'NON_FRIENDS',
|
||||
|
||||
Reference in New Issue
Block a user