Fixed small compile error
This commit is contained in:
parent
a4b24ec86f
commit
2a26e47515
1 changed files with 0 additions and 3 deletions
|
@ -2,7 +2,6 @@ import {ClientEntry} from "tc-shared/ui/client";
|
||||||
import {ConnectionHandler, ConnectionState} from "tc-shared/ConnectionHandler";
|
import {ConnectionHandler, ConnectionState} from "tc-shared/ConnectionHandler";
|
||||||
import {EventHandler, Registry} from "tc-shared/events";
|
import {EventHandler, Registry} from "tc-shared/events";
|
||||||
import {
|
import {
|
||||||
PrivateConversationManagerEvents,
|
|
||||||
PrivateConversationInfo,
|
PrivateConversationInfo,
|
||||||
PrivateConversationUIEvents
|
PrivateConversationUIEvents
|
||||||
} from "tc-shared/ui/frames/side/PrivateConversationDefinitions";
|
} from "tc-shared/ui/frames/side/PrivateConversationDefinitions";
|
||||||
|
@ -315,7 +314,6 @@ export class PrivateConversation extends AbstractChat<PrivateConversationUIEvent
|
||||||
}
|
}
|
||||||
|
|
||||||
export class PrivateConversationManager extends AbstractChatManager<PrivateConversationUIEvents> {
|
export class PrivateConversationManager extends AbstractChatManager<PrivateConversationUIEvents> {
|
||||||
public readonly events: Registry<PrivateConversationManagerEvents>;
|
|
||||||
public readonly htmlTag: HTMLDivElement;
|
public readonly htmlTag: HTMLDivElement;
|
||||||
public readonly connection: ConnectionHandler;
|
public readonly connection: ConnectionHandler;
|
||||||
|
|
||||||
|
@ -327,7 +325,6 @@ export class PrivateConversationManager extends AbstractChatManager<PrivateConve
|
||||||
constructor(connection: ConnectionHandler) {
|
constructor(connection: ConnectionHandler) {
|
||||||
super();
|
super();
|
||||||
this.connection = connection;
|
this.connection = connection;
|
||||||
this.events = new Registry<PrivateConversationManagerEvents>();
|
|
||||||
|
|
||||||
this.htmlTag = document.createElement("div");
|
this.htmlTag = document.createElement("div");
|
||||||
this.htmlTag.style.display = "flex";
|
this.htmlTag.style.display = "flex";
|
||||||
|
|
Loading…
Add table
Reference in a new issue