This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/dist/util/MessageFlags.d.ts
Flam3rboy ea41892fef 🔧 build
2021-02-05 22:01:01 +01:00

11 lines
277 B
TypeScript

import { BitField } from "./BitField";
export declare class MessageFlags extends BitField {
static FLAGS: {
CROSSPOSTED: bigint;
IS_CROSSPOST: bigint;
SUPPRESS_EMBEDS: bigint;
SOURCE_MESSAGE_DELETED: bigint;
URGENT: bigint;
};
}