eyes-of-a-trader/types/context/ContextVariableType.d.ts

11 lines
344 B
TypeScript
Raw Normal View History

2023-01-15 09:44:31 +11:00
export declare enum ContextVariableType {
/** Logged in users session id */
SESSION_ID = 0,
/** Currently acive raid information */
MATCH_INFO = 1,
/** Timestamp when client first connected */
CLIENT_START_TIMESTAMP = 2,
/** When player is loading into map and loot is requested */
REGISTER_PLAYER_REQUEST = 3
}