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

1
ts/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './typedsocket.classes.typedsocket';

View File

@ -0,0 +1,9 @@
import * as plugins from './typedsocket.plugins';
export class TypedSocket {
public static async createServer () {}
public static createCleint() {}
constructor() {}
}

13
ts/typedsocket.plugins.ts Normal file
View File

@ -0,0 +1,13 @@
// @apiglobal scope
import * as typedrequest from '@apiglobal/typedrequest';
export {
typedrequest
}
// @pushrocks scope
import * as smartsocket from '@pushrocks/smartsocket';
export {
smartsocket
}