ClearVision/types/context/ContextVariableType.d.ts

9 lines
246 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 */
MATCH_INFO = 1,
/** Timestamp when client first connected */
CLIENT_START_TIMESTAMP = 2
2022-10-06 23:29:01 -04:00
}