bungie-net-core
Version:
An easy way to interact with the Bungie.net API
15 lines (14 loc) • 398 B
TypeScript
/**
* Represents the socket energy types for Armor 2.0, Ghosts 2.0, and Stasis
* subclasses.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyEnergyType}
*/
export declare const DestinyEnergyType: {
readonly Any: 0;
readonly Arc: 1;
readonly Thermal: 2;
readonly Void: 3;
readonly Ghost: 4;
readonly Subclass: 5;
readonly Stasis: 6;
};