bungie-net-core
Version:
An easy way to interact with the Bungie.net API
11 lines (10 loc) • 400 B
TypeScript
/**
* When a Vendor Interaction provides rewards, they'll either let you choose one or
* let you have all of them. This determines which it will be.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyVendorInteractionRewardSelection}
*/
export declare const DestinyVendorInteractionRewardSelection: {
readonly None: 0;
readonly One: 1;
readonly All: 2;
};