bungie-net-core
Version:
An easy way to interact with the Bungie.net API
13 lines (12 loc) • 441 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.FireteamFinderOptionAvailability}
*/
export declare const FireteamFinderOptionAvailability: {
readonly None: 0;
readonly CreateListingBuilder: 1;
readonly SearchListingBuilder: 2;
readonly ListingViewer: 4;
readonly LobbyViewer: 8;
};