UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

23 lines (22 loc) 730 B
/** * 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.VendorItemStatus} */ export declare const VendorItemStatus: { readonly Success: 0; readonly NoInventorySpace: 1; readonly NoFunds: 2; readonly NoProgression: 4; readonly NoUnlock: 8; readonly NoQuantity: 16; readonly OutsidePurchaseWindow: 32; readonly NotAvailable: 64; readonly UniquenessViolation: 128; readonly UnknownError: 256; readonly AlreadySelling: 512; readonly Unsellable: 1024; readonly SellingInhibited: 2048; readonly AlreadyOwned: 4096; readonly DisplayOnly: 8192; };