Fix eslint

This commit is contained in:
Bill 2022-03-02 19:18:14 -05:00
parent f6da35c942
commit 9adc09897d
58 changed files with 1034 additions and 1034 deletions

View File

@ -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()
{ {

View File

@ -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)
{ {

View File

@ -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;

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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[];

View File

@ -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)
{ {

View File

@ -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[];