bungie-net-core
Version:
An easy way to interact with the Bungie.net API
23 lines (22 loc) • 773 B
TypeScript
/**
* The types of membership the Accounts system supports. This is the external
* facing enum used in place of the internal-only Bungie.SharedDefinitions.
* MembershipType.
* @see {@link https://bungie-net.github.io/#/components/schemas/BungieMembershipType}
*/
export declare const BungieMembershipType: {
readonly None: 0;
readonly TigerXbox: 1;
readonly TigerPsn: 2;
readonly TigerSteam: 3;
readonly TigerBlizzard: 4;
readonly TigerStadia: 5;
readonly TigerEgs: 6;
readonly TigerDemon: 10;
readonly BungieNext: 254;
/**
* "All" is only valid for searching capabilities: you need to pass the actual
* matching BungieMembershipType for any query where you pass a known membershipId.
*/
readonly All: -1;
};