Fix issue where wsmessages were broadscast instead of sent to their respective client

This commit is contained in:
David Majdandžić
2023-04-06 20:43:26 +02:00
parent 1f9ed8122a
commit 12896b2a5b
3 changed files with 14 additions and 8 deletions

View File

@@ -29,4 +29,9 @@ export type SerializedJob = {
pdu: PDU;
count?: number;
perSecond?: number;
};
export type WSMessage = {
type: string;
identifier: string;
data?: any;
};