Vue UI + UI server
[e-mobility-charging-stations-simulator.git] / src / charging-station / WorkerBroadcastChannel.ts
1 import { BroadcastChannel } from 'worker_threads';
2
3 export default class WorkerBroadcastChannel extends BroadcastChannel {
4 constructor() {
5 super('worker');
6 }
7 }