UNPKG

bungie-net-core

Version:

An easy way to interact with the Bungie.net API

25 lines (24 loc) 946 B
/** * A flags enumeration that represents a Fireteam Member's status. * * 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.DestinyPartyMemberStates} */ export declare const DestinyPartyMemberStates: { readonly None: 0; /** This one's pretty obvious - they're on your Fireteam. */ readonly FireteamMember: 1; /** I don't know what it means to be in a 'Posse', but apparently this is it. */ readonly PosseMember: 2; /** * Nor do I understand the difference between them being in a 'Group' vs. a ' * Fireteam'. * * I'll update these docs once I get more info. If I get more info. If you're * reading this, I never got more info. You're on your own, kid. */ readonly GroupMember: 4; /** This person is the party leader. */ readonly PartyLeader: 8; };