uws-react-native 0.0.11 → 0.1.0-beta.1
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/README.md +1 -1
- package/cpp/UwsReactNativeModule.cpp +4 -0
- package/cpp/app/HttpResponseObject.h +116 -40
- package/cpp/app/RecognizedString.h +20 -14
- package/cpp/app/TemplatedAppObject.h +61 -36
- package/cpp/app/WebSocketBehaviorImpl.h +269 -11
- package/cpp/app/WebSocketObject.h +354 -16
- package/cpp/app/WebSocketUserData.h +227 -0
- package/lib/commonjs/modules/WebSocketSendStatus.js +22 -0
- package/lib/commonjs/modules/WebSocketSendStatus.js.map +1 -0
- package/lib/commonjs/modules/index.js +22 -0
- package/lib/commonjs/modules/index.js.map +1 -1
- package/lib/commonjs/types/WebSocketUserData.js +2 -0
- package/lib/commonjs/types/WebSocketUserData.js.map +1 -0
- package/lib/module/modules/WebSocketSendStatus.js +18 -0
- package/lib/module/modules/WebSocketSendStatus.js.map +1 -0
- package/lib/module/modules/index.js +2 -1
- package/lib/module/modules/index.js.map +1 -1
- package/lib/module/types/WebSocketUserData.js +2 -0
- package/lib/module/types/WebSocketUserData.js.map +1 -0
- package/lib/typescript/commonjs/modules/WebSocketSendStatus.d.ts +15 -0
- package/lib/typescript/commonjs/modules/WebSocketSendStatus.d.ts.map +1 -0
- package/lib/typescript/commonjs/modules/index.d.ts +2 -0
- package/lib/typescript/commonjs/modules/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/types/HttpResponse.d.ts +35 -0
- package/lib/typescript/commonjs/types/HttpResponse.d.ts.map +1 -1
- package/lib/typescript/commonjs/types/HttpRouterOptions.d.ts +1 -1
- package/lib/typescript/commonjs/types/TemplatedApp.d.ts +5 -0
- package/lib/typescript/commonjs/types/TemplatedApp.d.ts.map +1 -1
- package/lib/typescript/commonjs/types/WebSocket.d.ts +18 -8
- package/lib/typescript/commonjs/types/WebSocket.d.ts.map +1 -1
- package/lib/typescript/commonjs/types/WebSocketBehavior.d.ts +9 -9
- package/lib/typescript/commonjs/types/WebSocketBehavior.d.ts.map +1 -1
- package/lib/typescript/commonjs/types/WebSocketUserData.d.ts +9 -0
- package/lib/typescript/commonjs/types/WebSocketUserData.d.ts.map +1 -0
- package/lib/typescript/commonjs/types/index.d.ts +3 -0
- package/lib/typescript/commonjs/types/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/types/us_socket_context_t.d.ts +2 -3
- package/lib/typescript/commonjs/types/us_socket_context_t.d.ts.map +1 -1
- package/lib/typescript/module/index.d.ts +2 -2
- package/lib/typescript/module/index.d.ts.map +1 -1
- package/lib/typescript/module/modules/App.d.ts +1 -1
- package/lib/typescript/module/modules/App.d.ts.map +1 -1
- package/lib/typescript/module/modules/WebSocketSendStatus.d.ts +15 -0
- package/lib/typescript/module/modules/WebSocketSendStatus.d.ts.map +1 -0
- package/lib/typescript/module/modules/getParts.d.ts +1 -1
- package/lib/typescript/module/modules/getParts.d.ts.map +1 -1
- package/lib/typescript/module/modules/index.d.ts +7 -5
- package/lib/typescript/module/modules/index.d.ts.map +1 -1
- package/lib/typescript/module/types/HttpRequest.d.ts +1 -1
- package/lib/typescript/module/types/HttpRequest.d.ts.map +1 -1
- package/lib/typescript/module/types/HttpResponse.d.ts +36 -1
- package/lib/typescript/module/types/HttpResponse.d.ts.map +1 -1
- package/lib/typescript/module/types/HttpRouterOptions.d.ts +1 -1
- package/lib/typescript/module/types/TemplatedApp.d.ts +10 -5
- package/lib/typescript/module/types/TemplatedApp.d.ts.map +1 -1
- package/lib/typescript/module/types/WebSocket.d.ts +19 -9
- package/lib/typescript/module/types/WebSocket.d.ts.map +1 -1
- package/lib/typescript/module/types/WebSocketBehavior.d.ts +14 -14
- package/lib/typescript/module/types/WebSocketBehavior.d.ts.map +1 -1
- package/lib/typescript/module/types/WebSocketUserData.d.ts +9 -0
- package/lib/typescript/module/types/WebSocketUserData.d.ts.map +1 -0
- package/lib/typescript/module/types/index.d.ts +8 -5
- package/lib/typescript/module/types/index.d.ts.map +1 -1
- package/lib/typescript/module/types/us_socket_context_t.d.ts +2 -3
- package/lib/typescript/module/types/us_socket_context_t.d.ts.map +1 -1
- package/lib/typescript/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
- package/src/modules/WebSocketSendStatus.ts +14 -0
- package/src/modules/index.ts +2 -1
- package/src/types/HttpResponse.ts +46 -29
- package/src/types/HttpRouterOptions.ts +1 -1
- package/src/types/TemplatedApp.ts +10 -10
- package/src/types/WebSocket.ts +24 -8
- package/src/types/WebSocketBehavior.ts +9 -9
- package/src/types/WebSocketUserData.ts +28 -0
- package/src/types/index.ts +3 -2
- package/src/types/us_socket_context_t.ts +2 -3
|
@@ -5,7 +5,7 @@ export interface HttpRouterOptions {
|
|
|
5
5
|
* if the body read is disabled.
|
|
6
6
|
*
|
|
7
7
|
* This is an actual optimization, because uws-react-native has to predefined the body read
|
|
8
|
-
* (the res->onDataV2) internally from C++ side by default. So if you disable body reading
|
|
8
|
+
* (the res->onDataV2) internally from C++ side by default. So, if you disable body reading
|
|
9
9
|
* in a specific route handler, uws-react-native will not do the predefined res->onDataV2 from C++ side at all.
|
|
10
10
|
*
|
|
11
11
|
* The reason why uws-react-native has to predefined the res->onDataV2 from C++ side, it is because we cannot do a sync call from uWebSockets C++ which run in arbitrary thread to JS, and late onDataV2 assignment will losing the body data. It is also by design that we run uWebSockets in another thread to prevent Main/UI thread blocking.
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import type { ListenOptions } from "../modules/ListenOptions";
|
|
2
|
-
import type { HttpRequest } from "./HttpRequest";
|
|
3
|
-
import type { HttpResponse } from "./HttpResponse";
|
|
4
|
-
import type { HttpRouterOptions } from "./HttpRouterOptions";
|
|
5
|
-
import type { RecognizedString } from "./RecognizedString";
|
|
1
|
+
import type { ListenOptions } from "../modules/ListenOptions.js";
|
|
2
|
+
import type { HttpRequest } from "./HttpRequest.js";
|
|
3
|
+
import type { HttpResponse } from "./HttpResponse.js";
|
|
4
|
+
import type { HttpRouterOptions } from "./HttpRouterOptions.js";
|
|
5
|
+
import type { RecognizedString } from "./RecognizedString.js";
|
|
6
|
+
import type { WebSocketBehavior } from "./WebSocketBehavior.js";
|
|
6
7
|
/**
|
|
7
8
|
* Definitions of the `App` and `SSLApp`. This is entirely copied from uWebSockets.js
|
|
8
9
|
*/
|
|
@@ -61,6 +62,10 @@ export interface TemplatedApp {
|
|
|
61
62
|
/**
|
|
62
63
|
* Removes a server name.
|
|
63
64
|
*/
|
|
65
|
+
/**
|
|
66
|
+
* Registers a handler matching specified URL pattern where WebSocket upgrade requests are caught.
|
|
67
|
+
*/
|
|
68
|
+
ws(pattern: RecognizedString, behavior: WebSocketBehavior): TemplatedApp;
|
|
64
69
|
/**
|
|
65
70
|
* Listens to unix socket. Callback hands either false or a listen socket.
|
|
66
71
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TemplatedApp.d.ts","sourceRoot":"","sources":["../../../../src/types/TemplatedApp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,aAAa,EACb,MAAM,
|
|
1
|
+
{"version":3,"file":"TemplatedApp.d.ts","sourceRoot":"","sources":["../../../../src/types/TemplatedApp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,aAAa,EACb,MAAM,6BAA0B,CAAA;AAUjC,OAAO,KAAK,EACX,WAAW,EACX,MAAM,kBAAe,CAAA;AAEtB,OAAO,KAAK,EACX,YAAY,EACZ,MAAM,mBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,wBAAqB,CAAA;AAE5B,OAAO,KAAK,EACX,gBAAgB,EAChB,MAAM,uBAAoB,CAAA;AAE3B,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,wBAAqB,CAAA;AAM5B;;GAEG;AACH,MAAM,WAAW,YAAY;IAE5B;;OAEG;IAOH;;OAEG;IAMH;;OAEG;IACH,KAAK,IAAK,IAAI,CAAC;IAEf;;OAEG;IACH,MAAM,CACL,MAAM,EAAE,MAAM,GACX,YAAY,CAAC;IAEjB;;OAEG;IACH,MAAM,CACL,EAAE,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GAC3D,YAAY,CAAC;IAGjB;;OAEG;IAGH;;OAEG;IACH,MAAM,CACL,IAAI,EAAE,gBAAgB,EACtB,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,aAAa,EACtB,EAAE,EAAE,CACH,EAAE,EAAE,MAAM,KAEN,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GACtB,YAAY,CAAC;IAEjB;;OAEG;IACH,MAAM,CACL,IAAI,EAAE,gBAAgB,EACtB,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,CACH,KAAK,EAAE,MAAM,KAET,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GACtB,YAAY,CAAC;IAEjB;;OAEG;IACH,MAAM,CACL,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,aAAa,EACtB,EAAE,EAAE,CACH,KAAK,EAAE,MAAM,KAET,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GACtB,YAAY,CAAC;IAEjB;;OAEG;IACH,MAAM,CACL,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,CACH,KAAK,EAAE,MAAM,KAET,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GACtB,YAAY,CAAC;IAIjB;;OAEG;IAKH;;OAEG;IACH,cAAc,CACb,KAAK,EAAE,gBAAgB,GACpB,MAAM,CAAC;IAEX;;OAEG;IACH,OAAO,CACN,KAAK,EAAE,gBAAgB,EACvB,OAAO,EAAE,gBAAgB,EACzB,QAAQ,CAAC,EAAE,OAAO,EAClB,QAAQ,CAAC,EAAE,OAAO,GACf,OAAO,CAAC;IAGZ;;OAEG;IAOH;;OAEG;IAKH;;OAEG;IACH,EAAE,CACD,OAAO,EAAE,gBAAgB,EACzB,QAAQ,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAGjB;;OAEG;IAQH;;OAEG;IACH,GAAG,CACF,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,OAAO,CACN,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,GAAG,CACF,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,GAAG,CACF,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,IAAI,CACH,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,OAAO,CACN,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,KAAK,CACJ,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,IAAI,CACH,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,GAAG,CACF,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;IAEjB;;OAEG;IACH,KAAK,CACJ,OAAO,EAAE,gBAAgB,EACzB,OAAO,EAAE,CAAC,GAAG,EAAE,YAAY,EAAE,GAAG,EAAE,WAAW,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,EACtE,OAAO,CAAC,EAAE,iBAAiB,GACxB,YAAY,CAAC;CAGjB"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { WebSocketSendStatus } from "../modules/WebSocketSendStatus.js";
|
|
2
|
+
import type { RecognizedString } from "./RecognizedString.js";
|
|
3
|
+
import type { WebSocketUserData } from "./WebSocketUserData.js";
|
|
2
4
|
/**
|
|
3
5
|
* A WebSocket connection that is valid from open to close event.
|
|
4
6
|
* Read more about this in the user manual.
|
|
5
7
|
*/
|
|
6
|
-
export interface WebSocket
|
|
8
|
+
export interface WebSocket {
|
|
7
9
|
/**
|
|
8
10
|
* Forcefully closes this WebSocket. Immediately calls the close handler.
|
|
9
11
|
* No WebSocket close message is sent.
|
|
@@ -13,7 +15,7 @@ export interface WebSocket<UserData> {
|
|
|
13
15
|
* See `HttpResponse.cork`.
|
|
14
16
|
* Takes a function in which the socket is corked (packing many sends into one single syscall/SSL block)
|
|
15
17
|
*/
|
|
16
|
-
cork(cb: () => void): WebSocket
|
|
18
|
+
cork(cb: () => void): WebSocket;
|
|
17
19
|
/**
|
|
18
20
|
* Gracefully closes this WebSocket. Immediately calls the close handler.
|
|
19
21
|
* A WebSocket close message is sent with code and shortMessage.
|
|
@@ -46,9 +48,9 @@ export interface WebSocket<UserData> {
|
|
|
46
48
|
*/
|
|
47
49
|
getTopics(): string[];
|
|
48
50
|
/**
|
|
49
|
-
* Returns the
|
|
51
|
+
* Returns the user data object.
|
|
50
52
|
*/
|
|
51
|
-
getUserData():
|
|
53
|
+
getUserData(): WebSocketUserData;
|
|
52
54
|
/**
|
|
53
55
|
* Returns whether this websocket is subscribed to topic.
|
|
54
56
|
*/
|
|
@@ -66,23 +68,31 @@ export interface WebSocket<UserData> {
|
|
|
66
68
|
* Sends a message. Returns 1 for success, 2 for dropped due to backpressure limit, and 0 for built up backpressure that will drain over time. You can check backpressure before or after sending by calling getBufferedAmount().
|
|
67
69
|
*
|
|
68
70
|
* Make sure you properly understand the concept of backpressure. Check the backpressure example file.
|
|
71
|
+
*
|
|
72
|
+
* This method will returns void due to the message is not a recognized string.
|
|
69
73
|
*/
|
|
70
|
-
send(message: RecognizedString, isBinary?: boolean, compress?: boolean):
|
|
74
|
+
send(message: RecognizedString, isBinary?: boolean, compress?: boolean): WebSocketSendStatus | void;
|
|
71
75
|
/**
|
|
72
76
|
* Sends the first fragment of a fragmented message. Use for sending large messages in chunks.
|
|
73
77
|
* Returns 1 for success, 2 for dropped due to backpressure limit, and 0 for built up backpressure.
|
|
78
|
+
*
|
|
79
|
+
* This method will returns void due to the message is not a recognized string.
|
|
74
80
|
*/
|
|
75
|
-
sendFirstFragment(message: RecognizedString, isBinary?: boolean, compress?: boolean):
|
|
81
|
+
sendFirstFragment(message: RecognizedString, isBinary?: boolean, compress?: boolean): WebSocketSendStatus | void;
|
|
76
82
|
/**
|
|
77
83
|
* Sends a middle fragment of a fragmented message.
|
|
78
84
|
* Returns 1 for success, 2 for dropped due to backpressure limit, and 0 for built up backpressure.
|
|
85
|
+
*
|
|
86
|
+
* This method will returns void due to the message is not a recognized string.
|
|
79
87
|
*/
|
|
80
|
-
sendFragment(message: RecognizedString, compress?: boolean):
|
|
88
|
+
sendFragment(message: RecognizedString, compress?: boolean): WebSocketSendStatus | void;
|
|
81
89
|
/**
|
|
82
90
|
* Sends the last fragment of a fragmented message.
|
|
83
91
|
* Returns 1 for success, 2 for dropped due to backpressure limit, and 0 for built up backpressure.
|
|
92
|
+
*
|
|
93
|
+
* This method will returns void due to the message is not a recognized string.
|
|
84
94
|
*/
|
|
85
|
-
sendLastFragment(message: RecognizedString, compress?: boolean):
|
|
95
|
+
sendLastFragment(message: RecognizedString, compress?: boolean): WebSocketSendStatus | void;
|
|
86
96
|
/**
|
|
87
97
|
* Subscribe to a topic.
|
|
88
98
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WebSocket.d.ts","sourceRoot":"","sources":["../../../../src/types/WebSocket.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,gBAAgB,EAChB,MAAM,
|
|
1
|
+
{"version":3,"file":"WebSocket.d.ts","sourceRoot":"","sources":["../../../../src/types/WebSocket.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,mBAAmB,EACnB,MAAM,mCAAgC,CAAA;AAEvC,OAAO,KAAK,EACX,gBAAgB,EAChB,MAAM,uBAAoB,CAAA;AAE3B,OAAO,KAAK,EACX,iBAAiB,EACjB,MAAM,wBAAqB,CAAA;AAE5B;;;GAGG;AACH,MAAM,WAAW,SAAS;IACzB;;;OAGM;IACN,KAAK,IAAK,IAAI,CAAC;IAEf;;;OAGG;IACH,IAAI,CACH,EAAE,EAAE,MAAM,IAAI,GACX,SAAS,CAAC;IAEd;;;OAGM;IACN,GAAG,CACF,IAAI,CAAC,EAAE,MAAM,EACb,YAAY,CAAC,EAAE,gBAAgB,GAC5B,IAAI,CAAC;IAET;;;OAGM;IACN,iBAAiB,IAAK,MAAM,CAAC;IAE7B;;;;;;;OAOM;IACN,gBAAgB,IAAK,WAAW,CAAC;IAEjC;;OAEG;IACH,sBAAsB,IAAK,MAAM,CAAC;IAElC;;OAEG;IACH,aAAa,IAAK,MAAM,CAAC;IAEzB;;OAEG;IACH,SAAS,IAAK,MAAM,EAAE,CAAC;IAEvB;;OAEG;IACH,WAAW,IAAK,iBAAiB,CAAC;IAElC;;OAEG;IACH,YAAY,CACX,KAAK,EAAE,gBAAgB,GACpB,OAAO,CAAC;IAEZ;;OAEG;IACH,IAAI,CACH,OAAO,CAAC,EAAE,gBAAgB,GACvB,MAAM,CAAC;IAEX;;;OAGM;IACN,OAAO,CACN,KAAK,EAAE,gBAAgB,EACvB,OAAO,EAAE,gBAAgB,EACzB,QAAQ,CAAC,EAAE,OAAO,EAClB,QAAQ,CAAC,EAAE,OAAO,GACf,OAAO,CAAC;IAEZ;;;;;;OAMM;IACN,IAAI,CACH,OAAO,EAAE,gBAAgB,EACzB,QAAQ,CAAC,EAAE,OAAO,EAClB,QAAQ,CAAC,EAAE,OAAO,GACf,mBAAmB,GAAG,IAAI,CAAC;IAE/B;;;;;OAKM;IACN,iBAAiB,CAChB,OAAO,EAAE,gBAAgB,EACzB,QAAQ,CAAC,EAAE,OAAO,EAClB,QAAQ,CAAC,EAAE,OAAO,GACf,mBAAmB,GAAG,IAAI,CAAC;IAE/B;;;;;OAKM;IACN,YAAY,CACX,OAAO,EAAE,gBAAgB,EACzB,QAAQ,CAAC,EAAE,OAAO,GACf,mBAAmB,GAAG,IAAI,CAAC;IAE/B;;;;;OAKM;IACN,gBAAgB,CACf,OAAO,EAAE,gBAAgB,EACzB,QAAQ,CAAC,EAAE,OAAO,GACf,mBAAmB,GAAG,IAAI,CAAC;IAE/B;;OAEG;IACH,SAAS,CACR,KAAK,EAAE,gBAAgB,GACpB,OAAO,CAAC;IAEZ;;OAEG;IACH,WAAW,CACV,KAAK,EAAE,gBAAgB,GACpB,OAAO,CAAC;CACZ"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import type { CompressOptions } from "../modules/CompressOptions";
|
|
2
|
-
import type { HttpRequest } from "./HttpRequest";
|
|
3
|
-
import type { HttpResponse } from "./HttpResponse";
|
|
4
|
-
import type { WebSocket } from "./WebSocket";
|
|
5
|
-
import type { us_socket_context_t } from "./us_socket_context_t";
|
|
1
|
+
import type { CompressOptions } from "../modules/CompressOptions.js";
|
|
2
|
+
import type { HttpRequest } from "./HttpRequest.js";
|
|
3
|
+
import type { HttpResponse } from "./HttpResponse.js";
|
|
4
|
+
import type { WebSocket } from "./WebSocket.js";
|
|
5
|
+
import type { us_socket_context_t } from "./us_socket_context_t.js";
|
|
6
6
|
/**
|
|
7
7
|
* A structure holding settings and handlers for a WebSocket URL route handler.
|
|
8
8
|
*/
|
|
9
|
-
export interface WebSocketBehavior
|
|
9
|
+
export interface WebSocketBehavior {
|
|
10
10
|
/**
|
|
11
11
|
* Handler for close event, no matter if error, timeout or graceful close.
|
|
12
12
|
* You may not use WebSocket after this event.
|
|
13
13
|
* Do not send on this WebSocket from within here, it is closed.
|
|
14
14
|
*/
|
|
15
|
-
close?: (ws: WebSocket
|
|
15
|
+
close?: (ws: WebSocket, code: number, message: ArrayBuffer) => void;
|
|
16
16
|
/**
|
|
17
17
|
* Whether or not we should automatically close the socket when a message is dropped due to backpressure. Defaults to false.
|
|
18
18
|
*/
|
|
@@ -28,7 +28,7 @@ export interface WebSocketBehavior<UserData> {
|
|
|
28
28
|
* Check `ws.getBufferedAmount()`.
|
|
29
29
|
* Use this to guide / drive your backpressure throttling.
|
|
30
30
|
*/
|
|
31
|
-
drain?: (ws: WebSocket
|
|
31
|
+
drain?: (ws: WebSocket) => void;
|
|
32
32
|
/**
|
|
33
33
|
* Handler for a dropped WebSocket message.
|
|
34
34
|
* Messages can be dropped due to specified backpressure settings.
|
|
@@ -36,7 +36,7 @@ export interface WebSocketBehavior<UserData> {
|
|
|
36
36
|
* Given ArrayBuffer is valid during the lifetime of this callback
|
|
37
37
|
* (until first await or return) and will be neutered.
|
|
38
38
|
*/
|
|
39
|
-
dropped?: (ws: WebSocket
|
|
39
|
+
dropped?: (ws: WebSocket, message: ArrayBuffer, isBinary: boolean) => void | Promise<void>;
|
|
40
40
|
/**
|
|
41
41
|
* Maximum amount of seconds that may pass without sending or getting a message. Connection is closed if this timeout passes.
|
|
42
42
|
* Resolution (granularity) for timeouts are typically 4 seconds, rounded to closest.
|
|
@@ -70,21 +70,21 @@ export interface WebSocketBehavior<UserData> {
|
|
|
70
70
|
*
|
|
71
71
|
* Given ArrayBuffer is valid during the lifetime of this callback (until first await or return) and will be neutered.
|
|
72
72
|
*/
|
|
73
|
-
message?: (ws: WebSocket
|
|
73
|
+
message?: (ws: WebSocket, message: ArrayBuffer, isBinary: boolean) => void | Promise<void>;
|
|
74
74
|
/**
|
|
75
75
|
* Handler for new WebSocket connection.
|
|
76
76
|
* WebSocket is valid from open to close, no errors.
|
|
77
77
|
*/
|
|
78
|
-
open?: (ws: WebSocket
|
|
78
|
+
open?: (ws: WebSocket) => void | Promise<void>;
|
|
79
79
|
/**
|
|
80
80
|
* Handler for received ping control message.
|
|
81
81
|
* You do not need to handle this, pong messages are automatically sent as per the standard.
|
|
82
82
|
*/
|
|
83
|
-
ping?: (ws: WebSocket
|
|
83
|
+
ping?: (ws: WebSocket, message: ArrayBuffer) => void;
|
|
84
84
|
/**
|
|
85
85
|
* Handler for received pong control message.
|
|
86
86
|
*/
|
|
87
|
-
pong?: (ws: WebSocket
|
|
87
|
+
pong?: (ws: WebSocket, message: ArrayBuffer) => void;
|
|
88
88
|
/**
|
|
89
89
|
* Whether or not we should automatically send pings to uphold a stable connection given whatever `idleTimeout`.
|
|
90
90
|
*/
|
|
@@ -92,7 +92,7 @@ export interface WebSocketBehavior<UserData> {
|
|
|
92
92
|
/**
|
|
93
93
|
* Handler for subscription changes.
|
|
94
94
|
*/
|
|
95
|
-
subscription?: (ws: WebSocket
|
|
95
|
+
subscription?: (ws: WebSocket, topic: ArrayBuffer, newCount: number, oldCount: number) => void;
|
|
96
96
|
/**
|
|
97
97
|
* Upgrade handler used to intercept HTTP upgrade requests and potentially upgrade to WebSocket.
|
|
98
98
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WebSocketBehavior.d.ts","sourceRoot":"","sources":["../../../../src/types/WebSocketBehavior.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,eAAe,EACf,MAAM,
|
|
1
|
+
{"version":3,"file":"WebSocketBehavior.d.ts","sourceRoot":"","sources":["../../../../src/types/WebSocketBehavior.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,eAAe,EACf,MAAM,+BAA4B,CAAA;AAEnC,OAAO,KAAK,EACX,WAAW,EACX,MAAM,kBAAe,CAAA;AAEtB,OAAO,KAAK,EACX,YAAY,EACZ,MAAM,mBAAgB,CAAA;AAEvB,OAAO,KAAK,EACX,SAAS,EACT,MAAM,gBAAa,CAAA;AAEpB,OAAO,KAAK,EACX,mBAAmB,EACnB,MAAM,0BAAuB,CAAA;AAE9B;;GAEG;AACH,MAAM,WAAW,iBAAiB;IACjC;;;;OAIG;IACH,KAAK,CAAC,EAAE,CACP,EAAE,EAAE,SAAS,EACb,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,WAAW,KAChB,IAAI,CAAC;IAEV;;OAEG;IACH,wBAAwB,CAAC,EAAE,OAAO,CAAC;IAEnC;;;;OAIG;IACH,WAAW,CAAC,EAAE,eAAe,CAAC;IAE9B;;;;OAIG;IACH,KAAK,CAAC,EAAE,CACP,EAAE,EAAE,SAAS,KACT,IAAI,CAAC;IAEV;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,CACT,EAAE,EAAE,SAAS,EACb,OAAO,EAAE,WAAW,EACpB,QAAQ,EAAE,OAAO,KACb,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1B;;;;;OAKG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;OAKG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;OAKG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;;;OAKG;IACH,OAAO,CAAC,EAAE,CACT,EAAE,EAAE,SAAS,EACb,OAAO,EAAE,WAAW,EACpB,QAAQ,EAAE,OAAO,KACb,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1B;;;OAGG;IACH,IAAI,CAAC,EAAE,CACN,EAAE,EAAE,SAAS,KACT,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1B;;;OAGG;IACH,IAAI,CAAC,EAAE,CACN,EAAE,EAAE,SAAS,EACb,OAAO,EAAE,WAAW,KAChB,IAAI,CAAC;IAEV;;OAEG;IACH,IAAI,CAAC,EAAE,CACN,EAAE,EAAE,SAAS,EACb,OAAO,EAAE,WAAW,KAChB,IAAI,CAAC;IAEV;;OAEG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IAEjC;;OAEG;IACH,YAAY,CAAC,EAAE,CACd,EAAE,EAAE,SAAS,EACb,KAAK,EAAE,WAAW,EAClB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,MAAM,KACZ,IAAI,CAAC;IAEV;;OAEG;IACH,OAAO,CAAC,EAAE,CACT,GAAG,EAAE,YAAY,EACjB,GAAG,EAAE,WAAW,EAChB,OAAO,EAAE,mBAAmB,KACxB,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC1B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface WebSocketUserData {
|
|
2
|
+
getBoolean(key: string): boolean | undefined;
|
|
3
|
+
setBoolean(key: string, value: boolean): void;
|
|
4
|
+
getNumber(key: string): number | undefined;
|
|
5
|
+
setNumber(key: string, value: number): void;
|
|
6
|
+
getString(key: string): string | undefined;
|
|
7
|
+
setString(key: string, value: number): void;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=WebSocketUserData.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WebSocketUserData.d.ts","sourceRoot":"","sources":["../../../../src/types/WebSocketUserData.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IACjC,UAAU,CACT,GAAG,EAAE,MAAM,GACT,OAAO,GAAG,SAAS,CAAC;IAEvB,UAAU,CACT,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,OAAO,GACZ,IAAI,CAAC;IAER,SAAS,CACR,GAAG,EAAE,MAAM,GACT,MAAM,GAAG,SAAS,CAAC;IAEtB,SAAS,CACR,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,GACX,IAAI,CAAC;IAER,SAAS,CACR,GAAG,EAAE,MAAM,GACT,MAAM,GAAG,SAAS,CAAC;IAEtB,SAAS,CACR,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,GACX,IAAI,CAAC;CACR"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
export type * from "./HttpRequest";
|
|
2
|
-
export type * from "./HttpResponse";
|
|
3
|
-
export type * from "./MultipartField";
|
|
4
|
-
export type * from "./RecognizedString";
|
|
5
|
-
export type * from "./TemplatedApp";
|
|
1
|
+
export type * from "./HttpRequest.js";
|
|
2
|
+
export type * from "./HttpResponse.js";
|
|
3
|
+
export type * from "./MultipartField.js";
|
|
4
|
+
export type * from "./RecognizedString.js";
|
|
5
|
+
export type * from "./TemplatedApp.js";
|
|
6
|
+
export type * from "./WebSocket.js";
|
|
7
|
+
export type * from "./WebSocketBehavior.js";
|
|
8
|
+
export type * from "./WebSocketUserData.js";
|
|
6
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/types/index.ts"],"names":[],"mappings":"AAEA,mBAAmB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/types/index.ts"],"names":[],"mappings":"AAEA,mBAAmB,kBAAe,CAAA;AAClC,mBAAmB,mBAAgB,CAAA;AACnC,mBAAmB,qBAAkB,CAAA;AACrC,mBAAmB,uBAAoB,CAAA;AACvC,mBAAmB,mBAAgB,CAAA;AACnC,mBAAmB,gBAAa,CAAA;AAChC,mBAAmB,wBAAqB,CAAA;AACxC,mBAAmB,wBAAqB,CAAA"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Native type representing a raw uSockets struct us_socket_context_t.
|
|
3
|
-
*
|
|
3
|
+
* This is not intended to be modified from JavaScript.
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
}
|
|
5
|
+
export type us_socket_context_t = unknown;
|
|
7
6
|
//# sourceMappingURL=us_socket_context_t.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"us_socket_context_t.d.ts","sourceRoot":"","sources":["../../../../src/types/us_socket_context_t.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,
|
|
1
|
+
{"version":3,"file":"us_socket_context_t.d.ts","sourceRoot":"","sources":["../../../../src/types/us_socket_context_t.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2025.full.d.ts","../../../node_modules/react-native/types/modules/BatchedBridge.d.ts","../../../node_modules/react-native/Libraries/vendor/emitter/EventEmitter.d.ts","../../../node_modules/react-native/types/modules/Codegen.d.ts","../../../node_modules/react-native/types/modules/Devtools.d.ts","../../../node_modules/react-native/Libraries/vendor/core/ErrorUtils.d.ts","../../../node_modules/react-native/src/types/globals.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/react-native/types/private/Utilities.d.ts","../../../node_modules/react-native/types/public/Insets.d.ts","../../../node_modules/react-native/types/public/ReactNativeTypes.d.ts","../../../node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts","../../../node_modules/react-native/types/public/ReactNativeRenderer.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/Touchable.d.ts","../../../node_modules/react-native/Libraries/Components/View/ViewAccessibility.d.ts","../../../node_modules/react-native/Libraries/Components/View/ViewPropTypes.d.ts","../../../node_modules/react-native/Libraries/Components/RefreshControl/RefreshControl.d.ts","../../../node_modules/react-native/Libraries/Components/View/View.d.ts","../../../node_modules/react-native/Libraries/Components/ScrollView/ScrollView.d.ts","../../../node_modules/react-native/Libraries/Image/ImageResizeMode.d.ts","../../../node_modules/react-native/Libraries/Image/ImageSource.d.ts","../../../node_modules/react-native/Libraries/Image/Image.d.ts","../../../node_modules/@react-native/virtualized-lists/Lists/VirtualizedList.d.ts","../../../node_modules/@react-native/virtualized-lists/index.d.ts","../../../node_modules/react-native/Libraries/Lists/FlatList.d.ts","../../../node_modules/react-native/Libraries/ReactNative/RendererProxy.d.ts","../../../node_modules/react-native/Libraries/Lists/SectionList.d.ts","../../../node_modules/react-native/Libraries/Text/Text.d.ts","../../../node_modules/react-native/Libraries/Animated/Animated.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/StyleSheet.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/processColor.d.ts","../../../node_modules/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts","../../../node_modules/react-native/Libraries/Alert/Alert.d.ts","../../../node_modules/react-native/Libraries/Animated/Easing.d.ts","../../../node_modules/react-native/Libraries/Animated/useAnimatedValue.d.ts","../../../node_modules/react-native/Libraries/Animated/useAnimatedValueXY.d.ts","../../../node_modules/react-native/Libraries/Animated/useAnimatedColor.d.ts","../../../node_modules/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts","../../../node_modules/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts","../../../node_modules/react-native/Libraries/AppState/AppState.d.ts","../../../node_modules/react-native/Libraries/BatchedBridge/NativeModules.d.ts","../../../node_modules/react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts","../../../node_modules/react-native/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts","../../../node_modules/react-native/Libraries/Components/Clipboard/Clipboard.d.ts","../../../node_modules/react-native/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts","../../../node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.d.ts","../../../node_modules/react-native/Libraries/Components/Keyboard/Keyboard.d.ts","../../../node_modules/react-native/types/private/TimerMixin.d.ts","../../../node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts","../../../node_modules/react-native/Libraries/Components/LayoutConformance/LayoutConformance.d.ts","../../../node_modules/react-native/Libraries/Components/Pressable/Pressable.d.ts","../../../node_modules/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts","../../../node_modules/react-native/Libraries/Components/SafeAreaView/SafeAreaView.d.ts","../../../node_modules/react-native/Libraries/Components/StatusBar/StatusBar.d.ts","../../../node_modules/react-native/Libraries/Components/Switch/Switch.d.ts","../../../node_modules/react-native/Libraries/Components/TextInput/InputAccessoryView.d.ts","../../../node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts","../../../node_modules/react-native/Libraries/Components/ToastAndroid/ToastAndroid.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts","../../../node_modules/react-native/Libraries/Components/Button.d.ts","../../../node_modules/react-native/Libraries/Core/registerCallableModule.d.ts","../../../node_modules/react-native/Libraries/NativeComponent/NativeComponentRegistry.d.ts","../../../node_modules/react-native/Libraries/Interaction/InteractionManager.d.ts","../../../node_modules/react-native/Libraries/Interaction/PanResponder.d.ts","../../../node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.d.ts","../../../node_modules/react-native/Libraries/Linking/Linking.d.ts","../../../node_modules/react-native/Libraries/LogBox/LogBox.d.ts","../../../node_modules/react-native/Libraries/Modal/Modal.d.ts","../../../node_modules/react-native/Libraries/Performance/Systrace.d.ts","../../../node_modules/react-native/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts","../../../node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts","../../../node_modules/react-native/Libraries/ReactNative/IPerformanceLogger.d.ts","../../../node_modules/react-native/Libraries/ReactNative/AppRegistry.d.ts","../../../node_modules/react-native/Libraries/ReactNative/I18nManager.d.ts","../../../node_modules/react-native/Libraries/ReactNative/RootTag.d.ts","../../../node_modules/react-native/Libraries/ReactNative/UIManager.d.ts","../../../node_modules/react-native/Libraries/ReactNative/requireNativeComponent.d.ts","../../../node_modules/react-native/Libraries/Settings/Settings.d.ts","../../../node_modules/react-native/Libraries/Share/Share.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypes.d.ts","../../../node_modules/react-native/Libraries/TurboModule/RCTExport.d.ts","../../../node_modules/react-native/Libraries/TurboModule/TurboModuleRegistry.d.ts","../../../node_modules/react-native/Libraries/Types/CodegenTypesNamespace.d.ts","../../../node_modules/react-native/Libraries/Utilities/Appearance.d.ts","../../../node_modules/react-native/Libraries/Utilities/BackHandler.d.ts","../../../node_modules/react-native/src/private/devsupport/devmenu/DevMenu.d.ts","../../../node_modules/react-native/Libraries/Utilities/DevSettings.d.ts","../../../node_modules/react-native/Libraries/Utilities/Dimensions.d.ts","../../../node_modules/react-native/Libraries/Utilities/PixelRatio.d.ts","../../../node_modules/react-native/Libraries/Utilities/Platform.d.ts","../../../node_modules/react-native/Libraries/Vibration/Vibration.d.ts","../../../node_modules/react-native/types/public/DeprecatedPropertiesAlias.d.ts","../../../node_modules/react-native/Libraries/Utilities/codegenNativeCommands.d.ts","../../../node_modules/react-native/Libraries/Utilities/codegenNativeComponent.d.ts","../../../node_modules/react-native/types/index.d.ts","../../src/_internal/native-modules/NativeUwsReactNative.ts","../../src/types/RecognizedString.ts","../../src/types/HttpRequest.ts","../../src/types/HttpResponse.ts","../../src/types/MultipartField.ts","../../src/modules/ListenOptions.ts","../../src/types/HttpRouterOptions.ts","../../src/types/TemplatedApp.ts","../../src/types/index.ts","../../src/modules/App.ts","../../src/modules/getParts.ts","../../src/modules/us_listen_socket_close.ts","../../src/modules/us_socket_local_port.ts","../../src/modules/index.ts","../../src/index.ts","../../src/modules/CompressOptions.ts","../../src/modules/EnvironmentVariables.ts","../../src/modules/SSLApp.ts","../../src/types/AppDescriptor.ts","../../src/types/AppOptions.ts","../../src/types/WebSocket.ts","../../src/types/us_socket_context_t.ts","../../src/types/WebSocketBehavior.ts","../../src/types/us_listen_socket.ts","../../src/types/us_socket.ts"],"fileIdsList":[[91,183],[106],[89,90],[114,115],[91,95,101,102,105,108,110,111,114],[112],[123],[84,94],[91,92,94,95,99,113,114],[91,114,145,146],[91,92,94,95,99,114],[84,130],[91,92,99,113,114,132],[91],[91,93,95,98,99,101,113,114],[91,92,94,99,114],[91,92,94,99],[91,92,93,94,95,97,99,100,101,113,114],[91,114],[91,113,114],[84,91,92,94,95,98,99,113,114,132],[91,93,95],[91,101,113,114,143],[91,92,97,114,143,145],[91,101,143],[91,92,93,95,97,98,113,114,132],[95],[91,93,95,96,97,98,113,114],[84],[122],[91,92,93,94,95,98,103,104,113,114],[95,96],[91,101,102,107,113,114],[91,102,107,109,113,114],[91,95,99,114],[91,94],[91,113,159],[94],[114],[113],[103,112,114],[91,92,94,95,98,113,114],[169],[84,183],[130],[183],[87],[83,84,85,86,87,88,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[86],[192,197],[184,192],[184],[189,193,194,195,196],[185],[185,186,187,189,190],[186,187,199,204,205],[185,186,187,188,191]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"e03da518b01b46a4c99a1f88cd727ee98ddf14492c43dae1ae7a63e992971bab","impliedFormat":1},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"9d3b119c15e8eeb9a8fbeca47e0165ca7120704d90bf123b16ee5b612e2ecc9d","impliedFormat":1},{"version":"9f66eb21b8f041974625ec8f8ab3c6c36990b900b053ba962bb8b233301c8e47","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"7ec03b79f5b8c3e30e058e8170a042d46a3e1ab00ab9a58ed1655542bb42e9b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"84c8272b0651d84378f8d76bcc563fca1e88866f30fffd790d87648861d18ab1","impliedFormat":1},{"version":"cf1e23408bb2e38cb90d109cf8027c829f19424ad7a611c74edf39e1f195fe22","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"c5dc49c81f9cb20dff16b7933b50e19ac3565430cf685bbe51bcbcdb760fc03f","impliedFormat":1},{"version":"d78d4bc8bbda13ed147b23e63ff4ac83e3dcf4f07012afadd59e8a62473b5894","impliedFormat":1},{"version":"49f33cb54f1c57d269113fae1784795945957989b3b3e50e61cc6666c37698e7","impliedFormat":1},{"version":"f3c9bbc02c599af23defd5ca3683e46b4f3fa8a3e21a0194eac9910086050a0c","impliedFormat":1},{"version":"71ea55d90792c303eb5d653a5d11ffb9b887ec9735d64f466ad64d0509cde883","impliedFormat":1},{"version":"e7d56fa3c64c44b29fa11d840b1fe04f6d782fc2e341a1f01b987f5e59f34266","impliedFormat":1},{"version":"0f86beb951b048eb7e0a17609e934a59a8686683b2134632975baeacaf53c23d","impliedFormat":1},{"version":"e51855f55b01c41984044b49bd926b878a825ae696e62d77abf5b8c7f17922a3","impliedFormat":1},{"version":"c16b3221e31c25ef95c37c05c465abf16cbf6c9a7172f82cb5f8e697bd84ce03","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"4e1bfec0f44a463f25cc26528a4505bc592feef555706311a143481f69a21d6f","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"6887bea839d87a3616091b06cfdd482b6180e62ea673341cac6a43c3493b639e","impliedFormat":1},{"version":"82eacfd7ea5b2ad312235aa279aaa1aecebed6b58d0f79fecc6f48a70417fa75","impliedFormat":1},{"version":"b35bd6bfc2bf2af6b28a6a1ba9d2a96eb551ea1b72353d2dbc2f85ecf2d688ef","impliedFormat":1},{"version":"847cd9ff64607f879497abd456aa6096fc17e7c299a8d7ef2944a009e38b25af","impliedFormat":1},{"version":"8692ab54f6ee8d957b6a3b49adef709c5d6d0ffdfae71c90d796b43d0c3dfa32","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"c6b68cd2e7838e91e05ede0a686815f521024281768f338644f6c0e0ad8e63cd","impliedFormat":1},{"version":"20c7a8cb00fda35bf50333488657c20fd36b9af9acb550f8410ef3e9bef51ef0","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"7775860d545679aadbe90ab59c9278c839fd98a5259074c200fd3eafae4af3a1","impliedFormat":1},{"version":"d0303afad324baa4739ffaee626daa433a819e8a4f3f473551f69d1b9683a118","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"0f1b593fc15591a6c6e8e5ee4c022b720e1c6e8524c1dd5196df42046808f033","impliedFormat":1},{"version":"d45c2f63eab3d231c75a446cf9578c904f17f096e712e3375934a554470c9575","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"32bd5e456193f931b2a59b68e3801a2a0943dc641330389afc38e8277875a6da","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"039f0a1f6d67514bbfea62ffbb0822007ce35ba180853ec9034431f60f63dbe6","impliedFormat":1},{"version":"36d56e188ed59a5f5ce2ca3a18ca2a08958a38bf05dd2eb96a9751343b3628e6","impliedFormat":1},{"version":"dbd0bf577d4ec8368f3456fba405dc1989ce343f6c7a13347dbabd363ec22b4f","impliedFormat":1},{"version":"919492794863d6badec9ec17490ca445c3d79adf5df102eaa6ba0241a287dc20","impliedFormat":1},{"version":"b7d1cdc9810b334734a7d607c195daa721df6d114d99e96d595ff52db1df627b","impliedFormat":1},{"version":"946cce58bd3eb8d6235e288023aac2a13427e07022e9771c5bbdfa8ad6377101","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"48e13cc57caeab8b8b1ef80678303672dba25f8e8748d8d0b266e8f2d9c82eb6","impliedFormat":1},{"version":"75ff8ea2c0c632719c14f50849c1fc7aa2d49f42b08c54373688536b3f995ee7","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"96d6742b440a834780d550fffc57d94d0aece2e04e485bce8d817dc5fb9b05d7","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"cef48408162200abaea0c3a1be25a41fcd1b4dc41c3b90be6a89dde5ca4375c0","impliedFormat":1},{"version":"9da2649fb89af9bd08b2215621ad1cfda50f798d0acbd0d5fee2274ee940c827","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"737fc8159cb99bf39a201c4d7097e92ad654927da76a1297ace7ffe358a2eda3","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"676088e53ca31e9e21e53f5a8996345d1b8a7d153737208029db964279004c3e","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"896e4b676a6f55ca66d40856b63ec2ff7f4f594d6350f8ae04eaee8876da0bc5","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"7f117218589f697e89ea02c8b13932c82453398e5fd5b888e0015d1d46f4b654","impliedFormat":1},{"version":"cd51ffd8ad0b792a5c660a67e059fdde906cfa821d03942f164945d82d43ac37","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"2586bc43511ba0f0c4d8e35dacf25ed596dde8ec50b9598ecd80194af52f992f","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"29befd9bb08a9ed1660fd7ac0bc2ad24a56da550b75b8334ac76c2cfceda974a","impliedFormat":1},{"version":"ed8a8dedbd26d5c101bcc2d1691535d1fd0470dc82d7e866391e9b31b851ea8c","impliedFormat":1},{"version":"9a0146dcdc7cdd389f0c2183532ad1d009ecaa525c1c277d45bebfc20bdaa0a4","impliedFormat":1},{"version":"8db57d8da0ab49e839fb2d0874cfe456553077d387f423a7730c54ef5f494318","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"f65096bb6555aad0429c5b6b21b92683398434be9b2ce0d3a1fdbb651c1243f1","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"412a06aa68e902bc67d69f381c06f8fd52497921c5746fabddadd44f624741f5","impliedFormat":1},{"version":"400552c87bd7cf5143bf7efdc13df91514f0b1fa75b5b10bf242d555919f8c67","impliedFormat":1},{"version":"679d513ae215eefa414420d8ba9234711c62524f38b8cf96e67f9f1591fefdfe","impliedFormat":1},{"version":"95f3e41d21af2a631b8780eb0f4a578b30295c192e6ab20aae73df6590f4c38d","signature":"ab38fee7702825bd739bcfa6da1efe40e07608c28d2b0ffcef491cce2a374220"},{"version":"a855bfe85dc92cabbfa543efd3a4dbe3720ad4500b7a5d946a243f5029aa4a87","signature":"b67dc0d44f65d535476148570120c8d32a0003c7c1637393bbd4a0f96191e94a"},{"version":"e9f8b6911fae3b2d55770a5b8bf040fb93b233431e944be8d4fe0ed8af25e05a","signature":"2e49111fa0153551e992a097a3207c17cb9e7409397ef780ccd9d7152e5cf26a"},{"version":"04cc655b447820fea4abe49ed16a98e770ac4829586217647bc43d27de241e00","signature":"9269ee1c8d795da63910a73e230d7f7810d95f4e04010d6cf22a34f78b24dda1"},{"version":"e844e2c4beed76c29262b4d4c1ea7b5d1264cf41b145e61f963382c05cd49a77","signature":"26aca5480777595a69cb66178573697d37a8a605523d52a9f7ebe2b3492f95a4"},{"version":"9f145cd502916eeede68144b71d3f9bde5254d88ad2f85ea26ece393413b479c","signature":"dc1bce0a429fbef53d92cbe99f7c190df55841b5f2b46dff72b84b40536030b2"},{"version":"2857488dfc98f74d08863834cdd752cfbe053a55bb3e50efae829ab5bc61750b","signature":"156029343cb734e6a07d52b1aad36fb483b51303a95db89eb5cfbdf87a028f0c"},{"version":"939f01320ef909a2b300104ab6a755b8bf9fe268604021b68b1ae55cfdb78967","signature":"431be374f5a730e49e389ec6a7136a8193d18505df8769149dfac874da40cd0a"},{"version":"93ac818006b01ef231be85d9af591ccf6a0c336a5fd35c47940d6b0e50fc1ac7","signature":"663acf58ac8966170066e1a2ecd0e96559f2b195f6f717ae1e6c603bdcab20fc"},{"version":"e378a9e9fe6f56cbaf6c69bbf429847860355603d06ccdd96abff51708c73c95","signature":"d675fc60ee4c63ba0bb7c8126a629dea423803822c109c7f057bfc4e05fbaa16"},{"version":"8807945e876b5050312e1112dbc40ed4fe2ddd5d76fcc87dc06d8ac5d9584edf","signature":"1bb7d0cd255f8a2155015de80cd88185573e79b6cf4c142cdf881a3541133a62"},{"version":"c065f580af36a4abdefb8b2c12d6d2802461c07cd9fd60fb8b760e017c8555f5","signature":"f1ef903b2b5fb801152d3cffea0fb661e7dbcdac1dcf917e38b728e692e2e1e5"},{"version":"8a932667e1926a026a23459981d900074fe5ff100aa0b5c0e1843dc187127f7c","signature":"5d5e1dcc835ce10a67540defff93f7c0093050c131ade78ac3fec7fdb3f14ea4"},{"version":"685db8286bda15e1686b98102faed64381bf2ad9948ccaf7453fd8ad8840d2c5","signature":"6b98223936c83378075db28120d1284b0ce3fd7a2c10210752b14d2f6740c8c4"},{"version":"987b01309e7145b18a55d953792589fbeca79b165743463e7a3c88df515d9453","signature":"f2d71c74b0b728265952816c6bcc1661f480bb7b8b8325b87b8007c5921a3f1a"},{"version":"61c026a75815673b02d1471ab2ed477af0a147e60bafe2ff742db09a77445609","signature":"1b124e6c58b761370cf708dcb6f44f966a043c89f9930cd83042c251b8f07334"},{"version":"7641b9fcc7a69f14d0513b21edb8ac81211b585ceb6ce9b2f8e2fffd6ddb1092","signature":"5c1ccbf9cb1a88cf3d1628534b2fda4510c788af05cae55cdf1ef66c55f14488"},{"version":"ccbec50b50925177853d7922c7345c8511b33d00d50a836b0ccf8968e6e3de78","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"4d48259924f38514f5484d2e144916a112eae253046b65101e46c71182713d9b",{"version":"bb46b9aacd940e54b666a0516e372ca08f7d1075112790f9bcceaac2ed3eeec0","signature":"96bab9ce72cb4c641e0ed583dfa18dd0559d9a25416d0aab6c373412a1ec5200"},{"version":"f32cc475c357a3f047f04e87660a34ec11eca8b33d218119396910aeafdfb170","signature":"f2b38ca3adbfaf76a1c65311bafd42754dd9c431a9442a1b8ddab725b36d09e1"},"b1104487b2f58c28df8ca5f0374a21366445899139e43f4b2efadacac267e6d8",{"version":"99c8ca3b568dea4bd79a32c842633fb84668c8efc8fa276307e2a29919d877eb","signature":"6f0b7d2a973c4a8d41036d7324f1065d8b0b29aed95ae3ae519a5cf482c4c271"},"a1b19ea38d3d2c2f7421c1aad47597262c39d97a6b9ea6cbb831db70bb45bdef","9d307aa37f29003c56f97ba3b5e915fe5e6a7816e90080e2811d0b5074ba004b"],"root":[[184,208]],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./commonjs","rootDir":"../../src","skipLibCheck":true,"strict":true,"verbatimModuleSyntax":true},"referencedMap":[[106,1],[107,2],[91,3],[116,4],[112,5],[121,6],[119,6],[120,6],[124,7],[126,8],[127,9],[147,10],[129,11],[131,12],[133,13],[134,14],[135,15],[136,16],[100,16],[137,17],[102,18],[138,19],[139,9],[140,20],[141,21],[97,22],[144,23],[146,24],[145,25],[143,26],[101,17],[98,27],[99,28],[130,29],[122,29],[123,30],[105,31],[150,29],[151,32],[153,12],[108,33],[110,34],[155,35],[149,36],[160,37],[109,14],[162,14],[163,36],[164,38],[166,39],[168,39],[167,39],[114,40],[113,41],[115,39],[111,42],[170,43],[171,44],[95,36],[172,7],[173,7],[175,45],[176,29],[182,46],[88,47],[183,48],[85,44],[86,49],[180,46],[96,27],[94,14],[184,46],[198,50],[193,51],[199,52],[194,51],[197,53],[195,52],[196,52],[186,54],[187,54],[191,55],[204,54],[206,56],[192,57]],"latestChangedDtsFile":"./commonjs/types/us_socket.d.ts","version":"6.0.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2025.full.d.ts","../../../node_modules/react-native/types/modules/BatchedBridge.d.ts","../../../node_modules/react-native/Libraries/vendor/emitter/EventEmitter.d.ts","../../../node_modules/react-native/types/modules/Codegen.d.ts","../../../node_modules/react-native/types/modules/Devtools.d.ts","../../../node_modules/react-native/Libraries/vendor/core/ErrorUtils.d.ts","../../../node_modules/react-native/src/types/globals.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/react-native/types/private/Utilities.d.ts","../../../node_modules/react-native/types/public/Insets.d.ts","../../../node_modules/react-native/types/public/ReactNativeTypes.d.ts","../../../node_modules/react-native/Libraries/Types/CoreEventTypes.d.ts","../../../node_modules/react-native/types/public/ReactNativeRenderer.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/Touchable.d.ts","../../../node_modules/react-native/Libraries/Components/View/ViewAccessibility.d.ts","../../../node_modules/react-native/Libraries/Components/View/ViewPropTypes.d.ts","../../../node_modules/react-native/Libraries/Components/RefreshControl/RefreshControl.d.ts","../../../node_modules/react-native/Libraries/Components/View/View.d.ts","../../../node_modules/react-native/Libraries/Components/ScrollView/ScrollView.d.ts","../../../node_modules/react-native/Libraries/Image/ImageResizeMode.d.ts","../../../node_modules/react-native/Libraries/Image/ImageSource.d.ts","../../../node_modules/react-native/Libraries/Image/Image.d.ts","../../../node_modules/@react-native/virtualized-lists/Lists/VirtualizedList.d.ts","../../../node_modules/@react-native/virtualized-lists/index.d.ts","../../../node_modules/react-native/Libraries/Lists/FlatList.d.ts","../../../node_modules/react-native/Libraries/ReactNative/RendererProxy.d.ts","../../../node_modules/react-native/Libraries/Lists/SectionList.d.ts","../../../node_modules/react-native/Libraries/Text/Text.d.ts","../../../node_modules/react-native/Libraries/Animated/Animated.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/StyleSheetTypes.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/StyleSheet.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/processColor.d.ts","../../../node_modules/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.d.ts","../../../node_modules/react-native/Libraries/Alert/Alert.d.ts","../../../node_modules/react-native/Libraries/Animated/Easing.d.ts","../../../node_modules/react-native/Libraries/Animated/useAnimatedValue.d.ts","../../../node_modules/react-native/Libraries/Animated/useAnimatedValueXY.d.ts","../../../node_modules/react-native/Libraries/Animated/useAnimatedColor.d.ts","../../../node_modules/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.d.ts","../../../node_modules/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.d.ts","../../../node_modules/react-native/Libraries/AppState/AppState.d.ts","../../../node_modules/react-native/Libraries/BatchedBridge/NativeModules.d.ts","../../../node_modules/react-native/Libraries/Components/AccessibilityInfo/AccessibilityInfo.d.ts","../../../node_modules/react-native/Libraries/Components/ActivityIndicator/ActivityIndicator.d.ts","../../../node_modules/react-native/Libraries/Components/Clipboard/Clipboard.d.ts","../../../node_modules/react-native/Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.d.ts","../../../node_modules/react-native/Libraries/EventEmitter/NativeEventEmitter.d.ts","../../../node_modules/react-native/Libraries/Components/Keyboard/Keyboard.d.ts","../../../node_modules/react-native/types/private/TimerMixin.d.ts","../../../node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.d.ts","../../../node_modules/react-native/Libraries/Components/LayoutConformance/LayoutConformance.d.ts","../../../node_modules/react-native/Libraries/Components/Pressable/Pressable.d.ts","../../../node_modules/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.d.ts","../../../node_modules/react-native/Libraries/Components/SafeAreaView/SafeAreaView.d.ts","../../../node_modules/react-native/Libraries/Components/StatusBar/StatusBar.d.ts","../../../node_modules/react-native/Libraries/Components/Switch/Switch.d.ts","../../../node_modules/react-native/Libraries/Components/TextInput/InputAccessoryView.d.ts","../../../node_modules/react-native/Libraries/Components/TextInput/TextInput.d.ts","../../../node_modules/react-native/Libraries/Components/ToastAndroid/ToastAndroid.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.d.ts","../../../node_modules/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.d.ts","../../../node_modules/react-native/Libraries/Components/Button.d.ts","../../../node_modules/react-native/Libraries/Core/registerCallableModule.d.ts","../../../node_modules/react-native/Libraries/NativeComponent/NativeComponentRegistry.d.ts","../../../node_modules/react-native/Libraries/Interaction/InteractionManager.d.ts","../../../node_modules/react-native/Libraries/Interaction/PanResponder.d.ts","../../../node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.d.ts","../../../node_modules/react-native/Libraries/Linking/Linking.d.ts","../../../node_modules/react-native/Libraries/LogBox/LogBox.d.ts","../../../node_modules/react-native/Libraries/Modal/Modal.d.ts","../../../node_modules/react-native/Libraries/Performance/Systrace.d.ts","../../../node_modules/react-native/Libraries/PermissionsAndroid/PermissionsAndroid.d.ts","../../../node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.d.ts","../../../node_modules/react-native/Libraries/ReactNative/IPerformanceLogger.d.ts","../../../node_modules/react-native/Libraries/ReactNative/AppRegistry.d.ts","../../../node_modules/react-native/Libraries/ReactNative/I18nManager.d.ts","../../../node_modules/react-native/Libraries/ReactNative/RootTag.d.ts","../../../node_modules/react-native/Libraries/ReactNative/UIManager.d.ts","../../../node_modules/react-native/Libraries/ReactNative/requireNativeComponent.d.ts","../../../node_modules/react-native/Libraries/Settings/Settings.d.ts","../../../node_modules/react-native/Libraries/Share/Share.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypesIOS.d.ts","../../../node_modules/react-native/Libraries/StyleSheet/PlatformColorValueTypes.d.ts","../../../node_modules/react-native/Libraries/TurboModule/RCTExport.d.ts","../../../node_modules/react-native/Libraries/TurboModule/TurboModuleRegistry.d.ts","../../../node_modules/react-native/Libraries/Types/CodegenTypesNamespace.d.ts","../../../node_modules/react-native/Libraries/Utilities/Appearance.d.ts","../../../node_modules/react-native/Libraries/Utilities/BackHandler.d.ts","../../../node_modules/react-native/src/private/devsupport/devmenu/DevMenu.d.ts","../../../node_modules/react-native/Libraries/Utilities/DevSettings.d.ts","../../../node_modules/react-native/Libraries/Utilities/Dimensions.d.ts","../../../node_modules/react-native/Libraries/Utilities/PixelRatio.d.ts","../../../node_modules/react-native/Libraries/Utilities/Platform.d.ts","../../../node_modules/react-native/Libraries/Vibration/Vibration.d.ts","../../../node_modules/react-native/types/public/DeprecatedPropertiesAlias.d.ts","../../../node_modules/react-native/Libraries/Utilities/codegenNativeCommands.d.ts","../../../node_modules/react-native/Libraries/Utilities/codegenNativeComponent.d.ts","../../../node_modules/react-native/types/index.d.ts","../../src/_internal/native-modules/NativeUwsReactNative.ts","../../src/types/RecognizedString.ts","../../src/types/HttpRequest.ts","../../src/types/WebSocketUserData.ts","../../src/types/us_socket_context_t.ts","../../src/types/HttpResponse.ts","../../src/types/MultipartField.ts","../../src/modules/ListenOptions.ts","../../src/types/HttpRouterOptions.ts","../../src/modules/CompressOptions.ts","../../src/modules/WebSocketSendStatus.ts","../../src/types/WebSocket.ts","../../src/types/WebSocketBehavior.ts","../../src/types/TemplatedApp.ts","../../src/types/index.ts","../../src/modules/App.ts","../../src/modules/getParts.ts","../../src/modules/us_listen_socket_close.ts","../../src/modules/us_socket_local_port.ts","../../src/modules/index.ts","../../src/index.ts","../../src/modules/EnvironmentVariables.ts","../../src/modules/SSLApp.ts","../../src/types/AppDescriptor.ts","../../src/types/AppOptions.ts","../../src/types/us_listen_socket.ts","../../src/types/us_socket.ts"],"fileIdsList":[[91,183],[106],[89,90],[114,115],[91,95,101,102,105,108,110,111,114],[112],[123],[84,94],[91,92,94,95,99,113,114],[91,114,145,146],[91,92,94,95,99,114],[84,130],[91,92,99,113,114,132],[91],[91,93,95,98,99,101,113,114],[91,92,94,99,114],[91,92,94,99],[91,92,93,94,95,97,99,100,101,113,114],[91,114],[91,113,114],[84,91,92,94,95,98,99,113,114,132],[91,93,95],[91,101,113,114,143],[91,92,97,114,143,145],[91,101,143],[91,92,93,95,97,98,113,114,132],[95],[91,93,95,96,97,98,113,114],[84],[122],[91,92,93,94,95,98,103,104,113,114],[95,96],[91,101,102,107,113,114],[91,102,107,109,113,114],[91,95,99,114],[91,94],[91,113,159],[94],[114],[113],[103,112,114],[91,92,94,95,98,113,114],[169],[84,183],[130],[183],[87],[83,84,85,86,87,88,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[86],[198,203],[184,198],[184],[191,193,194,199,200,201,202],[185],[185,187,188],[185,186,189,191,192,196],[185,187,194],[186,188,189,193,195],[185,186,187,189,190,195,196,197]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"e03da518b01b46a4c99a1f88cd727ee98ddf14492c43dae1ae7a63e992971bab","impliedFormat":1},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd412dd6372493eb8e3e95cae8687d35e4d34dde905a33e0ee47b74224cdd6ab","impliedFormat":1},{"version":"9d3b119c15e8eeb9a8fbeca47e0165ca7120704d90bf123b16ee5b612e2ecc9d","impliedFormat":1},{"version":"9f66eb21b8f041974625ec8f8ab3c6c36990b900b053ba962bb8b233301c8e47","impliedFormat":1},{"version":"005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","impliedFormat":1},{"version":"7ec03b79f5b8c3e30e058e8170a042d46a3e1ab00ab9a58ed1655542bb42e9b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","impliedFormat":1},{"version":"e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","impliedFormat":1},{"version":"84c8272b0651d84378f8d76bcc563fca1e88866f30fffd790d87648861d18ab1","impliedFormat":1},{"version":"cf1e23408bb2e38cb90d109cf8027c829f19424ad7a611c74edf39e1f195fe22","impliedFormat":1},{"version":"8ebf448e9837fda1a368acbb575b0e28843d5b2a3fda04bce76248b64326ea49","impliedFormat":1},{"version":"91b9f6241fca7843985aa31157cfa08cc724c77d91145a4d834d27cdde099c05","impliedFormat":1},{"version":"c5dc49c81f9cb20dff16b7933b50e19ac3565430cf685bbe51bcbcdb760fc03f","impliedFormat":1},{"version":"d78d4bc8bbda13ed147b23e63ff4ac83e3dcf4f07012afadd59e8a62473b5894","impliedFormat":1},{"version":"49f33cb54f1c57d269113fae1784795945957989b3b3e50e61cc6666c37698e7","impliedFormat":1},{"version":"f3c9bbc02c599af23defd5ca3683e46b4f3fa8a3e21a0194eac9910086050a0c","impliedFormat":1},{"version":"71ea55d90792c303eb5d653a5d11ffb9b887ec9735d64f466ad64d0509cde883","impliedFormat":1},{"version":"e7d56fa3c64c44b29fa11d840b1fe04f6d782fc2e341a1f01b987f5e59f34266","impliedFormat":1},{"version":"0f86beb951b048eb7e0a17609e934a59a8686683b2134632975baeacaf53c23d","impliedFormat":1},{"version":"e51855f55b01c41984044b49bd926b878a825ae696e62d77abf5b8c7f17922a3","impliedFormat":1},{"version":"c16b3221e31c25ef95c37c05c465abf16cbf6c9a7172f82cb5f8e697bd84ce03","impliedFormat":1},{"version":"42bacb33cddecbcfe3e043ee1117ba848801749e44f947626765b3e0aec74b1c","impliedFormat":1},{"version":"4e1bfec0f44a463f25cc26528a4505bc592feef555706311a143481f69a21d6f","impliedFormat":1},{"version":"cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","impliedFormat":1},{"version":"6887bea839d87a3616091b06cfdd482b6180e62ea673341cac6a43c3493b639e","impliedFormat":1},{"version":"82eacfd7ea5b2ad312235aa279aaa1aecebed6b58d0f79fecc6f48a70417fa75","impliedFormat":1},{"version":"b35bd6bfc2bf2af6b28a6a1ba9d2a96eb551ea1b72353d2dbc2f85ecf2d688ef","impliedFormat":1},{"version":"847cd9ff64607f879497abd456aa6096fc17e7c299a8d7ef2944a009e38b25af","impliedFormat":1},{"version":"8692ab54f6ee8d957b6a3b49adef709c5d6d0ffdfae71c90d796b43d0c3dfa32","impliedFormat":1},{"version":"9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","impliedFormat":1},{"version":"c6b68cd2e7838e91e05ede0a686815f521024281768f338644f6c0e0ad8e63cd","impliedFormat":1},{"version":"20c7a8cb00fda35bf50333488657c20fd36b9af9acb550f8410ef3e9bef51ef0","impliedFormat":1},{"version":"c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","impliedFormat":1},{"version":"2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","impliedFormat":1},{"version":"7775860d545679aadbe90ab59c9278c839fd98a5259074c200fd3eafae4af3a1","impliedFormat":1},{"version":"d0303afad324baa4739ffaee626daa433a819e8a4f3f473551f69d1b9683a118","impliedFormat":1},{"version":"b561170fbe8d4292425e1dfa52406c8d97575681f7a5e420d11d9f72f7c29e38","impliedFormat":1},{"version":"5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","impliedFormat":1},{"version":"7f7c0ecc3eeeef905a3678e540947f4fbbc1a9c76075419dcc5fbfc3df59cb0b","impliedFormat":1},{"version":"df3303018d45c92be73fb4a282d5a242579f96235f5e0f8981983102caf5feca","impliedFormat":1},{"version":"0f1b593fc15591a6c6e8e5ee4c022b720e1c6e8524c1dd5196df42046808f033","impliedFormat":1},{"version":"d45c2f63eab3d231c75a446cf9578c904f17f096e712e3375934a554470c9575","impliedFormat":1},{"version":"084d0df6805570b6dc6c8b49c3a71d5bdfe59606901e0026c63945b68d4b080a","impliedFormat":1},{"version":"32bd5e456193f931b2a59b68e3801a2a0943dc641330389afc38e8277875a6da","impliedFormat":1},{"version":"0f066f9654e700a9cf79c75553c934eb14296aa80583bd2b5d07e2d582a3f4ee","impliedFormat":1},{"version":"269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","impliedFormat":1},{"version":"a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","impliedFormat":1},{"version":"486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","impliedFormat":1},{"version":"039f0a1f6d67514bbfea62ffbb0822007ce35ba180853ec9034431f60f63dbe6","impliedFormat":1},{"version":"36d56e188ed59a5f5ce2ca3a18ca2a08958a38bf05dd2eb96a9751343b3628e6","impliedFormat":1},{"version":"dbd0bf577d4ec8368f3456fba405dc1989ce343f6c7a13347dbabd363ec22b4f","impliedFormat":1},{"version":"919492794863d6badec9ec17490ca445c3d79adf5df102eaa6ba0241a287dc20","impliedFormat":1},{"version":"b7d1cdc9810b334734a7d607c195daa721df6d114d99e96d595ff52db1df627b","impliedFormat":1},{"version":"946cce58bd3eb8d6235e288023aac2a13427e07022e9771c5bbdfa8ad6377101","impliedFormat":1},{"version":"77282216c61bcef9a700db98e142301d5a7d988d3076286029da63e415e98a42","impliedFormat":1},{"version":"48e13cc57caeab8b8b1ef80678303672dba25f8e8748d8d0b266e8f2d9c82eb6","impliedFormat":1},{"version":"75ff8ea2c0c632719c14f50849c1fc7aa2d49f42b08c54373688536b3f995ee7","impliedFormat":1},{"version":"85a915dbb768b89cb92f5e6c165d776bfebd065883c34fee4e0219c3ed321b47","impliedFormat":1},{"version":"83df2f39cb14971adea51d1c84e7d146a34e9b7f84ad118450a51bdc3138412c","impliedFormat":1},{"version":"96d6742b440a834780d550fffc57d94d0aece2e04e485bce8d817dc5fb9b05d7","impliedFormat":1},{"version":"bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","impliedFormat":1},{"version":"7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","impliedFormat":1},{"version":"f63bbbffcfc897d22f34cf19ae13405cd267b1783cd21ec47d8a2d02947c98c1","impliedFormat":1},{"version":"cef48408162200abaea0c3a1be25a41fcd1b4dc41c3b90be6a89dde5ca4375c0","impliedFormat":1},{"version":"9da2649fb89af9bd08b2215621ad1cfda50f798d0acbd0d5fee2274ee940c827","impliedFormat":1},{"version":"df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","impliedFormat":1},{"version":"595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","impliedFormat":1},{"version":"737fc8159cb99bf39a201c4d7097e92ad654927da76a1297ace7ffe358a2eda3","impliedFormat":1},{"version":"e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","impliedFormat":1},{"version":"676088e53ca31e9e21e53f5a8996345d1b8a7d153737208029db964279004c3e","impliedFormat":1},{"version":"de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","impliedFormat":1},{"version":"896e4b676a6f55ca66d40856b63ec2ff7f4f594d6350f8ae04eaee8876da0bc5","impliedFormat":1},{"version":"0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","impliedFormat":1},{"version":"7f117218589f697e89ea02c8b13932c82453398e5fd5b888e0015d1d46f4b654","impliedFormat":1},{"version":"cd51ffd8ad0b792a5c660a67e059fdde906cfa821d03942f164945d82d43ac37","impliedFormat":1},{"version":"56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","impliedFormat":1},{"version":"6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","impliedFormat":1},{"version":"2586bc43511ba0f0c4d8e35dacf25ed596dde8ec50b9598ecd80194af52f992f","impliedFormat":1},{"version":"a793636667598e739a52684033037a67dc2d9db37fab727623626ef19aa5abb9","impliedFormat":1},{"version":"b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","impliedFormat":1},{"version":"9a9fba3a20769b0a74923e7032997451b61c1bd371c519429b29019399040d74","impliedFormat":1},{"version":"4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","impliedFormat":1},{"version":"d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","impliedFormat":1},{"version":"ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","impliedFormat":1},{"version":"32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","impliedFormat":1},{"version":"29befd9bb08a9ed1660fd7ac0bc2ad24a56da550b75b8334ac76c2cfceda974a","impliedFormat":1},{"version":"ed8a8dedbd26d5c101bcc2d1691535d1fd0470dc82d7e866391e9b31b851ea8c","impliedFormat":1},{"version":"9a0146dcdc7cdd389f0c2183532ad1d009ecaa525c1c277d45bebfc20bdaa0a4","impliedFormat":1},{"version":"8db57d8da0ab49e839fb2d0874cfe456553077d387f423a7730c54ef5f494318","impliedFormat":1},{"version":"ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","impliedFormat":1},{"version":"cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","impliedFormat":1},{"version":"16e5b5b023c2a1119c1878a51714861c56255778de0a7fe378391876a15f7433","impliedFormat":1},{"version":"f65096bb6555aad0429c5b6b21b92683398434be9b2ce0d3a1fdbb651c1243f1","impliedFormat":1},{"version":"a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","impliedFormat":1},{"version":"151f422f08c8ca67b77c5c39d49278b4df452ef409237c8219be109ae3cdae9d","impliedFormat":1},{"version":"412a06aa68e902bc67d69f381c06f8fd52497921c5746fabddadd44f624741f5","impliedFormat":1},{"version":"400552c87bd7cf5143bf7efdc13df91514f0b1fa75b5b10bf242d555919f8c67","impliedFormat":1},{"version":"679d513ae215eefa414420d8ba9234711c62524f38b8cf96e67f9f1591fefdfe","impliedFormat":1},{"version":"95f3e41d21af2a631b8780eb0f4a578b30295c192e6ab20aae73df6590f4c38d","signature":"ab38fee7702825bd739bcfa6da1efe40e07608c28d2b0ffcef491cce2a374220"},{"version":"a855bfe85dc92cabbfa543efd3a4dbe3720ad4500b7a5d946a243f5029aa4a87","signature":"b67dc0d44f65d535476148570120c8d32a0003c7c1637393bbd4a0f96191e94a"},{"version":"e9f8b6911fae3b2d55770a5b8bf040fb93b233431e944be8d4fe0ed8af25e05a","signature":"2e49111fa0153551e992a097a3207c17cb9e7409397ef780ccd9d7152e5cf26a"},{"version":"1705bb05c6d75285b25f0a1039ba48796b33848f1286bc53ca58deefc9a69b8d","signature":"94c7bdc7b9dc95e00bc0bae6b253fa1dc77b2999fa12613a3c4878d496d82101"},{"version":"25d53ec798f9c94331f5e8f9f5ceae78d7485b2aad06085ce5552088d40608ae","signature":"317efa8cb2f6aeef74634db4f99e51a5d1e9eae6d1e1c6f51b6bb78fb4f738cf"},{"version":"bea7d8730eaeaf2e041f6393f5850de899a2192f85f6cc9f49367f8f30086a78","signature":"56d4175adf541fa1e15b4654566d4f7c161dc5be9641244780289036c969ecec"},{"version":"e844e2c4beed76c29262b4d4c1ea7b5d1264cf41b145e61f963382c05cd49a77","signature":"26aca5480777595a69cb66178573697d37a8a605523d52a9f7ebe2b3492f95a4"},{"version":"9f145cd502916eeede68144b71d3f9bde5254d88ad2f85ea26ece393413b479c","signature":"dc1bce0a429fbef53d92cbe99f7c190df55841b5f2b46dff72b84b40536030b2"},{"version":"4ebee0d97eec5d64734b34b0f64c83037df1eff95590c77f5b8c3c0189d050fd","signature":"85ce08cec980f2965f5d97191ff34ac991fc5b88d45ad10ccd92798e19ddf9ab"},{"version":"61c026a75815673b02d1471ab2ed477af0a147e60bafe2ff742db09a77445609","signature":"1b124e6c58b761370cf708dcb6f44f966a043c89f9930cd83042c251b8f07334"},{"version":"57b3b752629c6aa1b4bb4b33cec4d73b6ed2df55e3480155fc3e36451318e8ad","signature":"5c4097f675e21ea26f4d7a39f73c97e036dfc9580f1bfb56cf943859d652c3dc"},{"version":"1c10561ed958c6595599699d9cb364da2de6b65c0fbf73e9197c4f08b017c388","signature":"e42351d5d961a057c9c3444daa64ede0cde905de4352d7b23d5e2565ed6e863d"},{"version":"57f1e689b70acc48ede114b911285ee9e5df571afcf01ee6ac1f7e951c137a94","signature":"aa51bdd70d91a6e2559218ae32870831eea4dc2f293eb193ada8bb83c71b6451"},{"version":"8b5579516959a192f0423b219e01f2dc8e2f509904a037375200b2062174a946","signature":"fbb377f5a19d1f089cea9c3bcf05857b82eafae1f51dbfba622d004fbbb73c9d"},{"version":"72b12ee40f5736294485baece72e2122bb2fbcda31824eb51b45ac238cf60e74","signature":"e6c41b65d20581a84115c0767929a3f58278d57ccd90f0f9dcc10e500c1a1f4e"},{"version":"e378a9e9fe6f56cbaf6c69bbf429847860355603d06ccdd96abff51708c73c95","signature":"d675fc60ee4c63ba0bb7c8126a629dea423803822c109c7f057bfc4e05fbaa16"},{"version":"8807945e876b5050312e1112dbc40ed4fe2ddd5d76fcc87dc06d8ac5d9584edf","signature":"1bb7d0cd255f8a2155015de80cd88185573e79b6cf4c142cdf881a3541133a62"},{"version":"c065f580af36a4abdefb8b2c12d6d2802461c07cd9fd60fb8b760e017c8555f5","signature":"f1ef903b2b5fb801152d3cffea0fb661e7dbcdac1dcf917e38b728e692e2e1e5"},{"version":"8a932667e1926a026a23459981d900074fe5ff100aa0b5c0e1843dc187127f7c","signature":"5d5e1dcc835ce10a67540defff93f7c0093050c131ade78ac3fec7fdb3f14ea4"},{"version":"05b383a6457948577331593ee8dec8e7d1e66b0179eec9ee9d5dd10cf8bb554a","signature":"e3f3c6161c5f103dc864388c760791ba71203bacb33a7a836f29b3f4cf3f5250"},{"version":"987b01309e7145b18a55d953792589fbeca79b165743463e7a3c88df515d9453","signature":"f2d71c74b0b728265952816c6bcc1661f480bb7b8b8325b87b8007c5921a3f1a"},{"version":"7641b9fcc7a69f14d0513b21edb8ac81211b585ceb6ce9b2f8e2fffd6ddb1092","signature":"5c1ccbf9cb1a88cf3d1628534b2fda4510c788af05cae55cdf1ef66c55f14488"},{"version":"ccbec50b50925177853d7922c7345c8511b33d00d50a836b0ccf8968e6e3de78","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"4d48259924f38514f5484d2e144916a112eae253046b65101e46c71182713d9b",{"version":"bb46b9aacd940e54b666a0516e372ca08f7d1075112790f9bcceaac2ed3eeec0","signature":"96bab9ce72cb4c641e0ed583dfa18dd0559d9a25416d0aab6c373412a1ec5200"},"a1b19ea38d3d2c2f7421c1aad47597262c39d97a6b9ea6cbb831db70bb45bdef","9d307aa37f29003c56f97ba3b5e915fe5e6a7816e90080e2811d0b5074ba004b"],"root":[[184,210]],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitUseStrict":false,"noStrictGenericChecks":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./commonjs","rootDir":"../../src","skipLibCheck":true,"strict":true,"verbatimModuleSyntax":true},"referencedMap":[[106,1],[107,2],[91,3],[116,4],[112,5],[121,6],[119,6],[120,6],[124,7],[126,8],[127,9],[147,10],[129,11],[131,12],[133,13],[134,14],[135,15],[136,16],[100,16],[137,17],[102,18],[138,19],[139,9],[140,20],[141,21],[97,22],[144,23],[146,24],[145,25],[143,26],[101,17],[98,27],[99,28],[130,29],[122,29],[123,30],[105,31],[150,29],[151,32],[153,12],[108,33],[110,34],[155,35],[149,36],[160,37],[109,14],[162,14],[163,36],[164,38],[166,39],[168,39],[167,39],[114,40],[113,41],[115,39],[111,42],[170,43],[171,44],[95,36],[172,7],[173,7],[175,45],[176,29],[182,46],[88,47],[183,48],[85,44],[86,49],[180,46],[96,27],[94,14],[184,46],[204,50],[199,51],[193,52],[200,51],[203,53],[201,52],[202,52],[186,54],[189,55],[197,56],[195,57],[196,58],[198,59]],"latestChangedDtsFile":"./commonjs/types/us_socket.d.ts","version":"6.0.3"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uws-react-native",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "The port of uWebSockets library for React Native",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "The port of uWebSockets server library for React Native",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "RakaDoank <rakaaudira@gmail.com> (https://github.com/RakaDoank)",
|
|
7
7
|
"homepage": "https://github.com/RakaDoank/uws-react-native",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"websocket"
|
|
20
20
|
],
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"react-native": ">=0.79"
|
|
22
|
+
"react-native": ">=0.79",
|
|
23
|
+
"react-native-macos": ">=0.81"
|
|
23
24
|
},
|
|
24
25
|
"files": [
|
|
25
26
|
"android",
|
package/src/modules/index.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export * from "./App"
|
|
2
|
-
|
|
2
|
+
export * from "./CompressOptions"
|
|
3
3
|
// export * from "./EnvironmentVariables"
|
|
4
4
|
export * from "./ListenOptions"
|
|
5
5
|
// export * from "./SSLApp"
|
|
6
6
|
export * from "./getParts"
|
|
7
7
|
export * from "./us_listen_socket_close"
|
|
8
8
|
export * from "./us_socket_local_port"
|
|
9
|
+
export * from "./WebSocketSendStatus"
|