bungie-net-core
Version:
An easy way to interact with the Bungie.net API
18 lines (17 loc) • 690 B
TypeScript
/**
* Activity Modes are grouped into a few possible broad categories.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyActivityModeCategory}
*/
export declare const DestinyActivityModeCategory: {
/** Activities that are neither PVP nor PVE, such as social activities. */
readonly None: 0;
/** PvE activities, where you shoot aliens in the face. */
readonly PvE: 1;
/** PvP activities, where you shoot your "friends". */
readonly PvP: 2;
/**
* PVE competitive activities, where you shoot whoever you want whenever you want.
* Or run around collecting small glowing triangles.
*/
readonly PvECompetitive: 3;
};