fix: naming conventions

This commit is contained in:
monbrey 2020-11-17 13:33:59 +11:00
parent 1028183c23
commit 065e89337e
2 changed files with 3 additions and 3 deletions

View file

@ -401,7 +401,7 @@ exports.WSEvents = keyMirror([
* * CHANNEL_FOLLOW_ADD
* * GUILD_DISCOVERY_DISQUALIFIED
* * GUILD_DISCOVERY_REQUALIFIED
* * INLINE_REPLY
* * REPLY
* @typedef {string} MessageType
*/
exports.MessageTypes = [
@ -424,7 +424,7 @@ exports.MessageTypes = [
null,
null,
null,
'INLINE_REPLY',
'REPLY',
];
/**

2
typings/index.d.ts vendored
View file

@ -2863,7 +2863,7 @@ declare module 'discord.js' {
| 'CHANNEL_FOLLOW_ADD'
| 'GUILD_DISCOVERY_DISQUALIFIED'
| 'GUILD_DISCOVERY_REQUALIFIED'
| 'INLINE_REPLY';
| 'REPLY';
interface OverwriteData {
allow?: PermissionResolvable;