bungie-net-core
Version:
An easy way to interact with the Bungie.net API
10 lines (9 loc) • 329 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.EquippingItemBlockAttributes}
*/
export declare const EquippingItemBlockAttributes: {
readonly None: 0;
readonly EquipOnAcquire: 1;
};