fixed lint/style/useEnumInitializers
This commit is contained in:
parent
27f7eb8caf
commit
0308ae4bf7
@ -1,11 +1,11 @@
|
|||||||
export enum ContextVariableType
|
export enum ContextVariableType
|
||||||
{
|
{
|
||||||
/** Logged in users session id */
|
/** Logged in users session id */
|
||||||
SESSION_ID,
|
SESSION_ID = 0,
|
||||||
/** Currently acive raid information */
|
/** Currently acive raid information */
|
||||||
RAID_CONFIGURATION,
|
RAID_CONFIGURATION = 1,
|
||||||
/** Timestamp when client first connected */
|
/** Timestamp when client first connected */
|
||||||
CLIENT_START_TIMESTAMP,
|
CLIENT_START_TIMESTAMP = 2,
|
||||||
/** When player is loading into map and loot is requested */
|
/** When player is loading into map and loot is requested */
|
||||||
REGISTER_PLAYER_REQUEST
|
REGISTER_PLAYER_REQUEST = 3
|
||||||
}
|
}
|
@ -197,8 +197,8 @@ export class DatabaseImporter implements OnLoad
|
|||||||
|
|
||||||
enum VaildationResult
|
enum VaildationResult
|
||||||
{
|
{
|
||||||
SUCCESS,
|
SUCCESS = 0,
|
||||||
FAILED,
|
FAILED = 1,
|
||||||
NOT_FOUND,
|
NOT_FOUND = 2,
|
||||||
UNDEFINED
|
UNDEFINED = 3
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user