bungie-net-core
Version:
An easy way to interact with the Bungie.net API
16 lines (15 loc) • 475 B
TypeScript
/**
* This enum represents a set of flags - use bitwise operators to check which of
* these match your value.
* @see {@link https://bungie-net.github.io/#/components/schemas/GroupsV2.Capabilities}
*/
export declare const Capabilities: {
readonly None: 0;
readonly Leaderboards: 1;
readonly Callsign: 2;
readonly OptionalConversations: 4;
readonly ClanBanner: 8;
readonly D2InvestmentData: 16;
readonly Tags: 32;
readonly Alliances: 64;
};