bungie-net-core
Version:
An easy way to interact with the Bungie.net API
11 lines (10 loc) • 386 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.FireteamFinderOptionValueFlags}
*/
export declare const FireteamFinderOptionValueFlags: {
readonly None: 0;
readonly CreateListingDefaultValue: 1;
readonly SearchFilterDefaultValue: 2;
};