bungie-net-core
Version:
An easy way to interact with the Bungie.net API
30 lines (29 loc) • 1.05 kB
TypeScript
/**
* A hint for how the presentation node should be displayed when shown in a list.
* How you use this is your UI is up to you.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyPresentationDisplayStyle}
*/
export declare const DestinyPresentationDisplayStyle: {
/** Display the item as a category, through which sub-items are filtered. */
readonly Category: 0;
readonly Badge: 1;
readonly Medals: 2;
readonly Collectible: 3;
readonly Record: 4;
readonly SeasonalTriumph: 5;
readonly GuardianRank: 6;
readonly CategoryCollectibles: 7;
readonly CategoryCurrencies: 8;
readonly CategoryEmblems: 9;
readonly CategoryEmotes: 10;
readonly CategoryEngrams: 11;
readonly CategoryFinishers: 12;
readonly CategoryGhosts: 13;
readonly CategoryMisc: 14;
readonly CategoryMods: 15;
readonly CategoryOrnaments: 16;
readonly CategoryShaders: 17;
readonly CategoryShips: 18;
readonly CategorySpawnfx: 19;
readonly CategoryUpgradeMaterials: 20;
};