bungie-net-core
Version:
An easy way to interact with the Bungie.net API
10 lines (9 loc) • 358 B
TypeScript
/**
* Represents the different kinds of acquisition behavior for progression reward
* items.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyProgressionRewardItemAcquisitionBehavior}
*/
export declare const DestinyProgressionRewardItemAcquisitionBehavior: {
readonly Instant: 0;
readonly PlayerClaimRequired: 1;
};