bungie-net-core
Version:
An easy way to interact with the Bungie.net API
13 lines (12 loc) • 400 B
TypeScript
/**
* If the plug has a specific custom style, this enumeration will represent that
* style/those styles.
*
* 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/Destiny.PlugUiStyles}
*/
export declare const PlugUiStyles: {
readonly None: 0;
readonly Masterwork: 1;
};