dees-comms/ts/index.ts

12 lines
316 B
TypeScript
Raw Normal View History

2020-10-06 15:56:00 +00:00
import * as plugins from './dees-comms.plugins';
/**
* a comm class for client side communication between workers and tabs.
*/
export class DeesComms {
public postChannel = new BroadcastChannel('dees-comms');
public subscriptionChannel = new BroadcastChannel('dees-comms');
public async postMessage() {}
}