9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
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
|
|
}
|