mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
* feat: message structures * fix: docs * chore: components and more * feat: embed and more * feat: more substructures and code review suggestions * chore: tests and date conversions * chore: jsdoc strings * fix: tests * fix: tests * feat: hexColor getters * chore: remove getters for nested data * chore: apply suggestions from code review * fix: burst_colors in toJSON * docs: rephrase SectionBuilder remark * chore: add LabelComponent * fix: add name and size to file component * chore: move resolved interaction data to interactions dir * fix: code review * chore: bump discord-api-types * chore: apply code review suggestions * fix: lockfile * chore: update remark * fix: missing export * chore: code review and tests * build: fix file * fix: typo * fix: missing toJSON * fix: remove redundant patch overrides * chore: missing component suffix * chore: better name * chore: add comment explaining timestamp conversion --------- Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
import { MessageFlags } from 'discord-api-types/v10';
|
|
import { BitField } from './BitField.js';
|
|
|
|
/**
|
|
* Data structure that makes it easy to interact with a {@link Message#flags} bitfield.
|
|
*/
|
|
export class MessageFlagsBitField extends BitField<keyof MessageFlags> {
|
|
/**
|
|
* Numeric message flags.
|
|
*/
|
|
public static override readonly Flags = MessageFlags;
|
|
|
|
public override toJSON() {
|
|
return super.toJSON(true);
|
|
}
|
|
}
|