fix(core): update

This commit is contained in:
2020-12-21 21:01:37 +00:00
commit 343100a0e2
14 changed files with 11773 additions and 0 deletions

10
test/test.ts Normal file
View File

@ -0,0 +1,10 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as typedsocket from '../ts/index';
let testTypedSocket: typedsocket.TypedSocket;
tap.test('first test', async () => {
testTypedSocket = new typedsocket.TypedSocket();
});
tap.start();