ChannelFlagsBitField

export class ChannelFlagsBitField extends BitField<ChannelFlagsString>
export class ChannelFlagsBitField extends BitField<ChannelFlagsString>
Data structure that makes it easy to interact with a flags bitfield.
bitfield:number
Bitfield of the packed bits
Inherited from BitField
Static
Flags:typeof ChannelFlags
Numeric guild channel flags.
Adds bits to these ones.
Returns
These bits or new BitField if the instance is frozen.
NameTypeOptionalDescription
...bitsBitFieldResolvable<ChannelFlagsString, number>[]NoBits to add
Inherited from BitField
any(bit):boolean
Checks whether the bitfield has a bit, or any of multiple bits.
NameTypeOptionalDescription
bitBitFieldResolvable<ChannelFlagsString, number>NoBit(s) to check for
Inherited from BitField
equals(bit):boolean
Checks if this bitfield equals another
NameTypeOptionalDescription
bitBitFieldResolvable<ChannelFlagsString, 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<ChannelFlagsString, number>NoBit(s) to check for
Inherited from BitField
missing(bits, ...hasParams):ChannelFlagsString[]
Gets all given bits that are missing from the bitfield.
NameTypeOptionalDescription
bitsBitFieldResolvable<ChannelFlagsString, 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<ChannelFlagsString, number>[]NoBits to remove
Inherited from BitField
Static
resolve(bit?):number
NameTypeOptionalDescription
bitBitFieldResolvable<ChannelFlagsString, ChannelFlags>YesNone
serialize(...hasParams):Record<ChannelFlagsString, 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):ChannelFlagsString[]
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