bungie-net-core
Version:
An easy way to interact with the Bungie.net API
16 lines (15 loc) • 505 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.DestinyTalentNodeStepLightAbilities}
*/
export declare const DestinyTalentNodeStepLightAbilities: {
readonly None: 0;
readonly Grenades: 1;
readonly Melee: 2;
readonly MovementModes: 4;
readonly Orbs: 8;
readonly SuperEnergy: 16;
readonly SuperMods: 32;
readonly All: 63;
};