chore: single typing change

This commit is contained in:
Björn Otgaar
2025-11-05 16:11:36 +01:00
parent 5e707224cf
commit 333bd6e6fd

View File

@@ -13,7 +13,7 @@ class MockEventSource {
mockInstances.push(this); mockInstances.push(this);
} }
sendMessage(data: any) { sendMessage(data: string) {
// Trigger whatever the component listens to // Trigger whatever the component listens to
this.onmessage?.({ data } as MessageEvent); this.onmessage?.({ data } as MessageEvent);
} }