publicClient: type fix

This commit is contained in:
Reto Brunner 2024-04-17 16:03:32 +02:00
parent e2b56cf16b
commit 8c41356ae9

View file

@ -2,7 +2,7 @@ import {PackageInfo} from "./index";
import Client from "../../client"; import Client from "../../client";
import Chan from "../../models/chan"; import Chan from "../../models/chan";
import Msg from "../../models/msg"; import Msg from "../../models/msg";
import {MessageType, UserInMessage} from "../../../shared/types/msg"; import {MessageType} from "../../../shared/types/msg";
export default class PublicClient { export default class PublicClient {
private client: Client; private client: Client;
@ -39,8 +39,8 @@ export default class PublicClient {
// FIXME: this is utterly bonkers // FIXME: this is utterly bonkers
// This needs to get wrapped into its own, typed plugin event // This needs to get wrapped into its own, typed plugin event
// Plus it is completely insane to let a plugin inject arbitrary events like that // Plus it is completely insane to let a plugin inject arbitrary events like that
sendToBrowser(event: string, data) { sendToBrowser(event: string, data: any) {
this.client.emit(event as any, data as any); this.client.emit(event as any, data);
} }
/** /**
@ -65,7 +65,8 @@ export default class PublicClient {
text: text, text: text,
from: { from: {
nick: this.packageInfo.name || this.packageInfo.packageName, nick: this.packageInfo.name || this.packageInfo.packageName,
} as UserInMessage, mode: "",
},
}) })
); );
} }