backport: DefaultMessageNotifications

This commit is contained in:
Lewdcario
2018-07-17 21:32:24 -05:00
parent 1d9edec567
commit 0702a0fcda
2 changed files with 35 additions and 0 deletions

View File

@@ -815,3 +815,14 @@ exports.APIErrors = {
INVITE_ACCEPTED_TO_GUILD_NOT_CONTANING_BOT: 50036,
REACTION_BLOCKED: 90001,
};
/**
* The value set for a guild's default message notifications, e.g. `ALL`. Here are the available types:
* * ALL
* * MENTIONS
* @typedef {string} DefaultMessageNotifications
*/
exports.DefaultMessageNotifications = [
'ALL',
'MENTIONS',
];