ClearVision/types/context/ContextVariableType.d.ts

11 lines
352 B
TypeScript
Raw Normal View History

2022-10-06 23:29:01 -04:00
export declare enum ContextVariableType {
2022-11-20 14:59:15 -05:00
/** Logged in users session id */
2022-10-06 23:29:01 -04:00
SESSION_ID = 0,
2022-11-20 14:59:15 -05:00
/** Currently acive raid information */
2023-05-18 15:57:25 -04:00
RAID_CONFIGURATION = 1,
2022-11-20 14:59:15 -05:00
/** Timestamp when client first connected */
2023-05-18 15:57:25 -04:00
CLIENT_START_TIMESTAMP = 2,
/** When player is loading into map and loot is requested */
REGISTER_PLAYER_REQUEST = 3
2022-10-06 23:29:01 -04:00
}