bungie-net-core
Version:
An easy way to interact with the Bungie.net API
23 lines (22 loc) • 707 B
TypeScript
/**
* A flags enumeration/bitmask indicating the versions of the game that a given
* user has purchased.
*
* 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/Destiny.DestinyGameVersions}
*/
export declare const DestinyGameVersions: {
readonly None: 0;
readonly Destiny2: 1;
readonly DLC1: 2;
readonly DLC2: 4;
readonly Forsaken: 8;
readonly YearTwoAnnualPass: 16;
readonly Shadowkeep: 32;
readonly BeyondLight: 64;
readonly Anniversary30th: 128;
readonly TheWitchQueen: 256;
readonly Lightfall: 512;
readonly TheFinalShape: 1024;
};