bungie-net-core
Version:
An easy way to interact with the Bungie.net API
11 lines (10 loc) • 364 B
TypeScript
/**
* A set of flags for reason(s) why the component populated in the way that it did.
* Inspect the individual flags for the reasons.
* @see {@link https://bungie-net.github.io/#/components/schemas/Components.ComponentPrivacySetting}
*/
export declare const ComponentPrivacySetting: {
readonly None: 0;
readonly Public: 1;
readonly Private: 2;
};