UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

19 lines (18 loc) 675 B
/** * There are many Progressions in Destiny (think Character Level, or Reputation). * These are the various "Scopes" of Progressions, which affect many things: * * Where/if they are stored * How they are calculated * Where they can be used in * other game logic * @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyProgressionScope} */ export declare const DestinyProgressionScope: { readonly Account: 0; readonly Character: 1; readonly Clan: 2; readonly Item: 3; readonly ImplicitFromEquipment: 4; readonly Mapped: 5; readonly MappedAggregate: 6; readonly MappedStat: 7; readonly MappedUnlockValue: 8; };