bungie-net-core
Version:
An easy way to interact with the Bungie.net API
15 lines (14 loc) • 452 B
TypeScript
/**
* 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/Ignores.IgnoreStatus}
*/
export declare const IgnoreStatus: {
readonly NotIgnored: 0;
readonly IgnoredUser: 1;
readonly IgnoredGroup: 2;
readonly IgnoredByGroup: 4;
readonly IgnoredPost: 8;
readonly IgnoredTag: 16;
readonly IgnoredGlobal: 32;
};