bungie-net-core
Version:
An easy way to interact with the Bungie.net API
11 lines (10 loc) • 388 B
TypeScript
/**
* If progression is earned, this determines whether the progression shows visual
* effects on the character or its item - or neither.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyProgressionStepDisplayEffect}
*/
export declare const DestinyProgressionStepDisplayEffect: {
readonly None: 0;
readonly Character: 1;
readonly Item: 2;
};