32 lines
640 B
JavaScript
32 lines
640 B
JavaScript
'use strict';
|
|
|
|
const { UserFlags } = require('discord-api-types/v10');
|
|
const BitField = require('./BitField');
|
|
|
|
/**
|
|
* Data structure that makes it easy to interact with a {@link User#flags} bitfield.
|
|
* @extends {BitField}
|
|
*/
|
|
class UserFlagsBitField extends BitField {
|
|
/**
|
|
* Numeric user flags.
|
|
* @type {UserFlags}
|
|
*/
|
|
static Flags = UserFlags;
|
|
}
|
|
|
|
/**
|
|
* @name UserFlagsBitField
|
|
* @kind constructor
|
|
* @memberof UserFlagsBitField
|
|
* @param {BitFieldResolvable} [bits=0] Bit(s) to read from
|
|
*/
|
|
|
|
/**
|
|
* Bitfield of the packed bits
|
|
* @type {number}
|
|
* @name UserFlagsBitField#bitfield
|
|
*/
|
|
|
|
module.exports = UserFlagsBitField;
|