AttachmentFlagsBitField

export class AttachmentFlagsBitField extends BitField<AttachmentFlagsString>
export class AttachmentFlagsBitField extends BitField<AttachmentFlagsString>
Data structure that makes it easy to interact with an flags bitfield.
bitfield:number
Bitfield of the packed bits
Inherited from BitField
Numeric attachment flags.
Adds bits to these ones.
Returns
These bits or new BitField if the instance is frozen.
NameTypeOptionalDescription
...bitsBitFieldResolvable<AttachmentFlagsString, number>[]NoBits to add
Inherited from BitField
any(bit):boolean
Checks whether the bitfield has a bit, or any of multiple bits.
NameTypeOptionalDescription
bitBitFieldResolvable<AttachmentFlagsString, number>NoBit(s) to check for
Inherited from BitField
equals(bit):boolean
Checks if this bitfield equals another
NameTypeOptionalDescription
bitBitFieldResolvable<AttachmentFlagsString, number>NoBit(s) to check for
Inherited from BitField
Freezes these bits, making them immutable.
Inherited from BitField
has(bit):boolean
Checks whether the bitfield has a bit, or multiple bits.
NameTypeOptionalDescription
bitBitFieldResolvable<AttachmentFlagsString, number>NoBit(s) to check for
Inherited from BitField
missing(bits, ...hasParams):AttachmentFlagsString[]
Gets all given bits that are missing from the bitfield.
NameTypeOptionalDescription
bitsBitFieldResolvable<AttachmentFlagsString, number>NoBit(s) to check for
...hasParamsreadonly unknown[]NoAdditional parameters for the has method, if any
Inherited from BitField
Removes bits from these.
Returns
These bits or new BitField if the instance is frozen.
NameTypeOptionalDescription
...bitsBitFieldResolvable<AttachmentFlagsString, number>[]NoBits to remove
Inherited from BitField
Static
resolve(bit?):number
NameTypeOptionalDescription
bitBitFieldResolvable<AttachmentFlagsString, number>YesNone
serialize(...hasParams):Record<AttachmentFlagsString, boolean>
Gets an object mapping field names to a boolean indicating whether the bit is available.
NameTypeOptionalDescription
...hasParamsreadonly unknown[]NoAdditional parameters for the has method, if any
Inherited from BitField
toArray(...hasParams):AttachmentFlagsString[]
Gets an Array of bitfield names based on the bits available.
NameTypeOptionalDescription
...hasParamsreadonly unknown[]NoAdditional parameters for the has method, if any
Inherited from BitField
toJSON():number extends number ? number : string
valueOf():number