fix(core): update

This commit is contained in:
Philipp Kunz 2020-10-06 16:25:44 +00:00
parent a04cafdb63
commit 243d1f17a3
2 changed files with 2 additions and 11 deletions

View File

@ -5,6 +5,7 @@ let deesCommsTest: deesComms.DeesComms;
tap.test('first test', async () => {
deesCommsTest = new deesComms.DeesComms();
deesCommsTest;
});
tap.start();

View File

@ -1,11 +1 @@
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() {}
}
export * from './dees-comms.classes.deescomms';