bungie-net-core
Version:
An easy way to interact with the Bungie.net API
13 lines (12 loc) • 443 B
TypeScript
/**
* A player can choose to restrict requests to join their Fireteam to specific
* states. These are the possible states a user can choose.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyGamePrivacySetting}
*/
export declare const DestinyGamePrivacySetting: {
readonly Open: 0;
readonly ClanAndFriendsOnly: 1;
readonly FriendsOnly: 2;
readonly InvitationOnly: 3;
readonly Closed: 4;
};