fix(core): update

This commit is contained in:
2020-10-06 15:56:00 +00:00
commit 8241e641a9
15 changed files with 11782 additions and 0 deletions

11
ts/index.ts Normal file
View File

@@ -0,0 +1,11 @@
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() {}
}