mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
Fix eslint
This commit is contained in:
parent
f6da35c942
commit
9adc09897d
@ -7,7 +7,7 @@ import { ICommunicationManager } from './ICommunicationManager';
|
|||||||
|
|
||||||
export class CommunicationManager extends Disposable implements ICommunicationManager, IUpdateReceiver
|
export class CommunicationManager extends Disposable implements ICommunicationManager, IUpdateReceiver
|
||||||
{
|
{
|
||||||
private _connections: IConnection[]
|
private _connections: IConnection[];
|
||||||
|
|
||||||
constructor()
|
constructor()
|
||||||
{
|
{
|
||||||
|
@ -7,7 +7,7 @@ export class CfhChatlogData
|
|||||||
private _callerUserId: number;
|
private _callerUserId: number;
|
||||||
private _reportedUserId: number;
|
private _reportedUserId: number;
|
||||||
private _chatRecordId: number;
|
private _chatRecordId: number;
|
||||||
private _chatRecord: ChatRecordData
|
private _chatRecord: ChatRecordData;
|
||||||
|
|
||||||
constructor(k:IMessageDataWrapper)
|
constructor(k:IMessageDataWrapper)
|
||||||
{
|
{
|
||||||
|
@ -367,7 +367,7 @@ export class OutgoingHeader
|
|||||||
public static GUIDE_SESSION_GUIDE_DECIDES = 1424;
|
public static GUIDE_SESSION_GUIDE_DECIDES = 1424;
|
||||||
public static GUIDE_SESSION_INVITE_REQUESTER = 234;
|
public static GUIDE_SESSION_INVITE_REQUESTER = 234;
|
||||||
public static GUIDE_SESSION_IS_TYPING = 519;
|
public static GUIDE_SESSION_IS_TYPING = 519;
|
||||||
public static GUIDE_SESSION_MESSAGE = 3899
|
public static GUIDE_SESSION_MESSAGE = 3899;
|
||||||
public static GUIDE_SESSION_ON_DUTY_UPDATE = 1922;
|
public static GUIDE_SESSION_ON_DUTY_UPDATE = 1922;
|
||||||
public static GUIDE_SESSION_REPORT = 3969;
|
public static GUIDE_SESSION_REPORT = 3969;
|
||||||
public static GUIDE_SESSION_REQUESTER_CANCELS = 291;
|
public static GUIDE_SESSION_REQUESTER_CANCELS = 291;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
export class FigureSetIdsMessageParser implements IMessageParser
|
export class FigureSetIdsMessageParser implements IMessageParser
|
||||||
{
|
{
|
||||||
private _figureSetIds: number[];
|
private _figureSetIds: number[];
|
||||||
private _boundFurnitureNames: string[]
|
private _boundFurnitureNames: string[];
|
||||||
|
|
||||||
public flush(): boolean
|
public flush(): boolean
|
||||||
{
|
{
|
||||||
|
@ -2,7 +2,7 @@ import { IMessageDataWrapper, IMessageParser } from '../../../../../core';
|
|||||||
|
|
||||||
export class MOTDNotificationParser implements IMessageParser
|
export class MOTDNotificationParser implements IMessageParser
|
||||||
{
|
{
|
||||||
private _messages: string[]
|
private _messages: string[];
|
||||||
|
|
||||||
public flush(): boolean
|
public flush(): boolean
|
||||||
{
|
{
|
||||||
|
@ -10,7 +10,7 @@ export class PollContentsParser implements IMessageParser
|
|||||||
private _endMessage = '';
|
private _endMessage = '';
|
||||||
private _numQuestions = 0;
|
private _numQuestions = 0;
|
||||||
private _questionArray:PollQuestion[] = [];
|
private _questionArray:PollQuestion[] = [];
|
||||||
private _npsPoll = false
|
private _npsPoll = false;
|
||||||
|
|
||||||
flush(): boolean
|
flush(): boolean
|
||||||
{
|
{
|
||||||
|
@ -5,7 +5,7 @@ export class TalentTrackLevel
|
|||||||
{
|
{
|
||||||
private _level: number;
|
private _level: number;
|
||||||
private _state: number;
|
private _state: number;
|
||||||
private _tasks: TalentTrackTask[]
|
private _tasks: TalentTrackTask[];
|
||||||
private _rewardPerks: string[];
|
private _rewardPerks: string[];
|
||||||
private _rewardProducts: TalentTrackRewardProduct[];
|
private _rewardProducts: TalentTrackRewardProduct[];
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ export class RoomEngineTriggerWidgetEvent extends RoomEngineObjectEvent
|
|||||||
public static REQUEST_INTERNAL_LINK: string = 'RETWE_REQUEST_INTERNAL_LINK';
|
public static REQUEST_INTERNAL_LINK: string = 'RETWE_REQUEST_INTERNAL_LINK';
|
||||||
public static REQUEST_ROOM_LINK: string = 'RETWE_REQUEST_ROOM_LINK';
|
public static REQUEST_ROOM_LINK: string = 'RETWE_REQUEST_ROOM_LINK';
|
||||||
|
|
||||||
private _widget: string
|
private _widget: string;
|
||||||
|
|
||||||
constructor(type: string, roomId: number, objectId: number, category: number, widget: string = null)
|
constructor(type: string, roomId: number, objectId: number, category: number, widget: string = null)
|
||||||
{
|
{
|
||||||
|
@ -2,7 +2,7 @@ export class FurnitureStackingHeightMap
|
|||||||
{
|
{
|
||||||
private _width: number;
|
private _width: number;
|
||||||
private _height: number;
|
private _height: number;
|
||||||
private _heights: number[]
|
private _heights: number[];
|
||||||
private _isNotStackable: boolean[];
|
private _isNotStackable: boolean[];
|
||||||
private _isRoomTile: boolean[];
|
private _isRoomTile: boolean[];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user