bungie-net-core
Version:
An easy way to interact with the Bungie.net API
18 lines (17 loc) • 567 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/Destiny.Definitions.DestinyTalentNodeStepGuardianAttributes}
*/
export declare const DestinyTalentNodeStepGuardianAttributes: {
readonly None: 0;
readonly Stats: 1;
readonly Shields: 2;
readonly Health: 4;
readonly Revive: 8;
readonly AimUnderFire: 16;
readonly Radar: 32;
readonly Invisibility: 64;
readonly Reputations: 128;
readonly All: 255;
};