feat: initial Papo bot scaffold
This commit is contained in:
28
node_modules/discord.js/src/util/InviteFlagsBitField.js
generated
vendored
Normal file
28
node_modules/discord.js/src/util/InviteFlagsBitField.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
const { InviteFlags } = require('discord-api-types/v10');
|
||||
const BitField = require('./BitField');
|
||||
|
||||
/**
|
||||
* Data structure that makes it easy to interact with a {@link GuildInvite#flags} bit field.
|
||||
*
|
||||
* @extends {BitField}
|
||||
*/
|
||||
class InviteFlagsBitField extends BitField {
|
||||
/**
|
||||
* Numeric invite flags.
|
||||
*
|
||||
* @type {InviteFlags}
|
||||
* @memberof InviteFlagsBitField
|
||||
*/
|
||||
static Flags = InviteFlags;
|
||||
}
|
||||
|
||||
/**
|
||||
* @name InviteFlagsBitField
|
||||
* @kind constructor
|
||||
* @memberof InviteFlagsBitField
|
||||
* @param {BitFieldResolvable} [bits=0] Bit(s) to read from
|
||||
*/
|
||||
|
||||
exports.InviteFlagsBitField = InviteFlagsBitField;
|
||||
Reference in New Issue
Block a user