ScavXpCounts/types/context/ContextVariableType.d.ts

12 lines
378 B
TypeScript
Raw Normal View History

2023-08-17 19:49:16 -06:00
export declare enum ContextVariableType {
/** Logged in users session id */
SESSION_ID = 0,
/** Currently acive raid information */
RAID_CONFIGURATION = 1,
/** Timestamp when client first connected */
CLIENT_START_TIMESTAMP = 2,
/** When player is loading into map and loot is requested */
2024-02-23 15:06:00 -07:00
REGISTER_PLAYER_REQUEST = 3,
RAID_ADJUSTMENTS = 4
2023-08-17 19:49:16 -06:00
}