@api.global/typedsocket 5.1.2 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/index.d.ts +7 -0
- package/dist_ts/index.js +5 -1
- package/dist_ts/nativebytes.codec.d.ts +8 -0
- package/dist_ts/nativebytes.codec.js +328 -0
- package/dist_ts/nativebytes.constants.d.ts +59 -0
- package/dist_ts/nativebytes.constants.js +58 -0
- package/dist_ts/nativebytes.errors.d.ts +13 -0
- package/dist_ts/nativebytes.errors.js +26 -0
- package/dist_ts/nativebytes.manager.d.ts +322 -0
- package/dist_ts/nativebytes.manager.js +2308 -0
- package/dist_ts/nativebytes.types.d.ts +187 -0
- package/dist_ts/nativebytes.types.js +2 -0
- package/dist_ts/typedsocket.classes.typedsocket.d.ts +120 -11
- package/dist_ts/typedsocket.classes.typedsocket.js +1093 -160
- package/dist_ts/typedsocket.plugins.d.ts +3 -2
- package/dist_ts/typedsocket.plugins.js +3 -2
- package/dist_ts/typedsocket.tags.d.ts +105 -0
- package/dist_ts/typedsocket.tags.js +521 -0
- package/{license → license.md} +2 -2
- package/package.json +22 -18
- package/readme.hints.md +27 -11
- package/readme.md +461 -46
- package/npmextra.json +0 -35
- package/ts/00_commitinfo_data.ts +0 -8
- package/ts/index.ts +0 -1
- package/ts/typedsocket.classes.typedsocket.ts +0 -1156
- package/ts/typedsocket.plugins.ts +0 -18
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// @apiglobal scope
|
|
2
|
-
import * as typedrequest from '@api.global/typedrequest';
|
|
3
|
-
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
|
|
4
|
-
|
|
5
|
-
export { typedrequest, typedrequestInterfaces };
|
|
6
|
-
|
|
7
|
-
// @pushrocks scope
|
|
8
|
-
import * as smartdelay from '@push.rocks/smartdelay';
|
|
9
|
-
import * as smartjson from '@push.rocks/smartjson';
|
|
10
|
-
import * as smartpromise from '@push.rocks/smartpromise';
|
|
11
|
-
import * as smartrx from '@push.rocks/smartrx';
|
|
12
|
-
import * as smartstring from '@push.rocks/smartstring';
|
|
13
|
-
import * as smarturl from '@push.rocks/smarturl';
|
|
14
|
-
|
|
15
|
-
export { smartdelay, smartjson, smartpromise, smartrx, smartstring, smarturl };
|
|
16
|
-
|
|
17
|
-
// SmartServe - required for server-side WebSocket support
|
|
18
|
-
export type { SmartServe, IWebSocketPeer } from '@push.rocks/smartserve';
|