two-slot-extended-mags/types/context/ContextVariableType.d.ts

12 lines
378 B
TypeScript
Raw Normal View History

2023-06-11 15:10:34 +10: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-04-03 20:15:11 +11:00
REGISTER_PLAYER_REQUEST = 3,
RAID_ADJUSTMENTS = 4
2023-06-11 15:10:34 +10:00
}