class SystemChannelFlagsBitField
extends
BitField<SystemChannelFlagsString>export class SystemChannelFlagsBitField extends BitField<SystemChannelFlagsString>Data structure that makes it easy to interact with a systemChannelFlags bitfield. Note that all event message types are enabled by default, and by setting their corresponding flags you are disabling them
staticFlags : typeof GuildSystemChannelFlags 
Numeric system channel flags.
[Symbol.iterator]() : IterableIterator<SystemChannelFlagsString>
Inherited from: BitField
 add(...bits: BitFieldResolvable<SystemChannelFlagsString, number>[]) : BitField<SystemChannelFlagsString, number>
Adds bits to these ones.
Returns: These bits or new BitField if the instance is frozen.
Inherited from: BitField
any() : boolean
Checks whether the bitfield has a bit, or any of multiple bits.
Inherited from: BitField
freeze() : Readonly<BitField<SystemChannelFlagsString, number>>
Freezes these bits, making them immutable.
Inherited from: BitField
 missing(...hasParams: readonly unknown[]) : SystemChannelFlagsString[]
Gets all given bits that are missing from the bitfield.
Inherited from: BitField
 remove(...bits: BitFieldResolvable<SystemChannelFlagsString, number>[]) : BitField<SystemChannelFlagsString, number>
Removes bits from these.
Returns: These bits or new BitField if the instance is frozen.
Inherited from: BitField
static resolve() : number
 serialize(...hasParams: readonly unknown[]) : Record<SystemChannelFlagsString, boolean>
Gets an object mapping field names to a boolean indicating whether the bit is available.
Inherited from: BitField
 toArray(...hasParams: readonly unknown[]) : SystemChannelFlagsString[]
Gets an Array of bitfield names based on the bits available.
Inherited from: BitField