bungie-net-core
Version:
An easy way to interact with the Bungie.net API
23 lines (22 loc) • 727 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.DestinyTalentNodeStepWeaponPerformances}
*/
export declare const DestinyTalentNodeStepWeaponPerformances: {
readonly None: 0;
readonly RateOfFire: 1;
readonly Damage: 2;
readonly Accuracy: 4;
readonly Range: 8;
readonly Zoom: 16;
readonly Recoil: 32;
readonly Ready: 64;
readonly Reload: 128;
readonly HairTrigger: 256;
readonly AmmoAndMagazine: 512;
readonly TrackingAndDetonation: 1024;
readonly ShotgunSpread: 2048;
readonly ChargeTime: 4096;
readonly All: 8191;
};