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