bungie-net-core
Version:
An easy way to interact with the Bungie.net API
17 lines (16 loc) • 661 B
TypeScript
/**
* The member levels used by all V2 Groups API. Individual group types use their
* own mappings in their native storage (general uses BnetDbGroupMemberType and D2
* clans use ClanMemberLevel), but they are all translated to this in the runtime
* api. These runtime values should NEVER be stored anywhere, so the values can be
* changed as necessary.
* @see {@link https://bungie-net.github.io/#/components/schemas/GroupsV2.RuntimeGroupMemberType}
*/
export declare const RuntimeGroupMemberType: {
readonly None: 0;
readonly Beginner: 1;
readonly Member: 2;
readonly Admin: 3;
readonly ActingFounder: 4;
readonly Founder: 5;
};