noibu-react-native 0.0.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 +155 -0
- package/dist/api/clientConfig.js +416 -0
- package/dist/api/helpCode.js +106 -0
- package/dist/api/inputManager.js +233 -0
- package/dist/api/metroplexSocket.js +882 -0
- package/dist/api/storedMetrics.js +201 -0
- package/dist/api/storedPageVisit.js +235 -0
- package/dist/const_matchers.js +260 -0
- package/dist/constants.d.ts +264 -0
- package/dist/constants.js +528 -0
- package/dist/entry/index.d.ts +8 -0
- package/dist/entry/index.js +15 -0
- package/dist/entry/init.js +91 -0
- package/dist/monitors/clickMonitor.js +284 -0
- package/dist/monitors/elementMonitor.js +174 -0
- package/dist/monitors/errorMonitor.js +295 -0
- package/dist/monitors/gqlErrorValidator.js +306 -0
- package/dist/monitors/httpDataBundler.js +665 -0
- package/dist/monitors/inputMonitor.js +130 -0
- package/dist/monitors/keyboardInputMonitor.js +67 -0
- package/dist/monitors/locationChangeMonitor.js +30 -0
- package/dist/monitors/pageMonitor.js +119 -0
- package/dist/monitors/requestMonitor.js +679 -0
- package/dist/pageVisit/pageVisit.js +172 -0
- package/dist/pageVisit/pageVisitEventError/pageVisitEventError.js +313 -0
- package/dist/pageVisit/pageVisitEventHTTP/pageVisitEventHTTP.js +115 -0
- package/dist/pageVisit/userStep/userStep.js +20 -0
- package/dist/react/ErrorBoundary.d.ts +72 -0
- package/dist/react/ErrorBoundary.js +102 -0
- package/dist/storage/localStorageProvider.js +23 -0
- package/dist/storage/rnStorageProvider.js +62 -0
- package/dist/storage/sessionStorageProvider.js +23 -0
- package/dist/storage/storage.js +119 -0
- package/dist/storage/storageProvider.js +83 -0
- package/dist/utils/date.js +62 -0
- package/dist/utils/eventlistener.js +67 -0
- package/dist/utils/function.js +398 -0
- package/dist/utils/object.js +144 -0
- package/dist/utils/performance.js +21 -0
- package/package.json +57 -0
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
/** @module Constants */
|
|
2
|
+
export declare const CURRENT_NOIBUJS_VERSION: 2;
|
|
3
|
+
export declare const MAX_FRAMES_IN_ARRAY: 50;
|
|
4
|
+
export declare const MAX_STRING_LENGTH: 1024;
|
|
5
|
+
export declare const MAX_STRING_LENGTH_2048: 2048;
|
|
6
|
+
export declare const MAX_HTTP_DATA_PAYLOAD_LENGTH: 50000;
|
|
7
|
+
export declare const MAX_COLLECT_ERROR_LOG: 50;
|
|
8
|
+
export declare const MAX_PAGEVISIT_PARTS: 10000;
|
|
9
|
+
export declare const MAX_HTTP_DATA_EVENT_COUNT: 100;
|
|
10
|
+
export declare const MAX_TIME_FOR_RRWEB_USER_EVENTS: 2000;
|
|
11
|
+
export declare const MAX_TIME_FOR_UNSENT_DATA_MILLIS: 500;
|
|
12
|
+
export declare const NOIBU_BROWSER_ID_KYWRD: "n_browser_data";
|
|
13
|
+
export declare const NOIBU_STORED_PAGE_VISIT: "n_stored_page_visit";
|
|
14
|
+
export declare const NOIBU_LOCAL_STORAGE_TEST_KEY: "n_key";
|
|
15
|
+
export declare const LOCAL_STORAGE_WRITE_TIMEOUT_MILLIS: 2500;
|
|
16
|
+
export declare const CLIENT_LOCK_TIME_MINUTES: 45;
|
|
17
|
+
export declare const PV_SEQ_NUM_RESET_TIME_MINUTES: 45;
|
|
18
|
+
export declare const REQUIRED_DATA_PROCESSING_URLS: string[];
|
|
19
|
+
export declare const HTTP_BODY_DROPPED_TYPE_MSG: "Dropped due to unsupported type.";
|
|
20
|
+
export declare const HTTP_BODY_DROPPED_LENGTH_MSG: "Dropped due to length.";
|
|
21
|
+
export declare const HTTP_BODY_NULL_STRING: "null";
|
|
22
|
+
export declare const BLOCKED_HTTP_HEADER_KEYS: string[];
|
|
23
|
+
export declare const PII_DIGIT_PATTERN: RegExp;
|
|
24
|
+
export declare const PII_EMAIL_PATTERN: RegExp;
|
|
25
|
+
export declare const HTTP_PII_BLOCKING_PATTERNS: RegExp[];
|
|
26
|
+
export declare const DEFAULT_WEBSITE_SUBDOMAIN_PATTERN: RegExp;
|
|
27
|
+
export declare const PII_REDACTION_REPLACEMENT_STRING: "******";
|
|
28
|
+
export declare const DEFAULT_STACK_FRAME_FIELD_VALUE: "_";
|
|
29
|
+
export declare const DISABLED_STATUS_KEY: "DisabledStatus";
|
|
30
|
+
export declare const CLIENT_UNLOCK_TIME_KEY: "ClientUnlockTime";
|
|
31
|
+
export declare const BROWSER_ID_KEY: "BrowserId";
|
|
32
|
+
export declare const CURRENT_PAGE_VISIT_COUNT_KEY: "CurrentPageVisitCount";
|
|
33
|
+
export declare const PAGE_VISIT_ID_KEY: "pvId";
|
|
34
|
+
export declare const LAST_ACTIVE_TIME_KEY: "LastActive";
|
|
35
|
+
export declare const CURRENT_PV_VERSION: 5;
|
|
36
|
+
export declare const CURRENT_METRICS_VERSION: 1;
|
|
37
|
+
export declare const HELP_CODE_HASH_PARAM_NAME: "#helpcode";
|
|
38
|
+
export declare const SEVERITY_ERROR: "error";
|
|
39
|
+
export declare const SEVERITY_WARN: "warn";
|
|
40
|
+
export declare const SEVERITY_INFO: "info";
|
|
41
|
+
export declare const SEVERITY_DEBUG: "debug";
|
|
42
|
+
export declare const UNFREEZE_TAG: "unfreeze";
|
|
43
|
+
export declare const MAX_METROPLEX_SOCKET_INNACTIVE_TIME: number;
|
|
44
|
+
export declare const MAX_PAGEVISIT_VISITED: 300;
|
|
45
|
+
export declare const IMG_EXTENSIONS: readonly ["jpg", "jpeg", "bmp", "gif", "png"];
|
|
46
|
+
export declare const MAX_PAGEVISIT_EVENTS: 200;
|
|
47
|
+
export declare const POSSIBLE_HTML_ATTRIBUTES_FOR_TEXT_VALUES: string[];
|
|
48
|
+
export declare const debug: (...m: any[]) => void;
|
|
49
|
+
export declare const MAX_CUSTOM_IDS_PER_PAGEVISIT: 10;
|
|
50
|
+
export declare const MAX_CUSTOM_ERRORS_PER_PAGEVISIT: 500;
|
|
51
|
+
export declare const NOIBUJS_SDK_NAME: "NOIBUJS";
|
|
52
|
+
export declare const NOIBUJS_SDK_REQUEST_HELP_CODE: "requestHelpCode";
|
|
53
|
+
export declare const NOIBUJS_SDK_ADD_ID_FUNCTION: "addCustomAttribute";
|
|
54
|
+
export declare const NOIBUJS_SDK_ADD_ERROR_FUNCTION: "addError";
|
|
55
|
+
export declare const NOIBUJS_SDK_ADD_ERROR_FROM_JS_FMW_FUNCTION: "addJsSdkError";
|
|
56
|
+
export declare const ERROR_PROPS: readonly ["url", "type", "str", "http_code", "js_err"];
|
|
57
|
+
export declare const EVENT_TARGETS: string[];
|
|
58
|
+
export declare const WHITELIST_HTML_ID_TEXT_REGEX = "method|finance|sagepay|cart|bag|coupon|affirm|karna|sezzle|button";
|
|
59
|
+
export declare const HUMAN_READABLE_CONTENT_TYPE_REGEX = "text|json|xml|html|graphql|x-www-form-urlencoded|form-data";
|
|
60
|
+
export declare const PV_METROPLEX_TYPE: "p";
|
|
61
|
+
export declare const VIDEO_METROPLEX_TYPE: "v";
|
|
62
|
+
export declare const META_DATA_METROPLEX_TYPE: "m";
|
|
63
|
+
export declare const HTTP_DATA_METROPLEX_TYPE: "h";
|
|
64
|
+
export declare const CUSTOM_ID_NAME_TYPE: "id_name";
|
|
65
|
+
export declare const CUSTOM_ID_VALUE_TYPE: "id_val";
|
|
66
|
+
export declare const BROWSER_ID_ATT_NAME: "br_id";
|
|
67
|
+
export declare const PV_ID_ATT_NAME: "pv_id";
|
|
68
|
+
export declare const VER_ATT_NAME: "v";
|
|
69
|
+
export declare const PV_SEQ_ATT_NAME: "seq";
|
|
70
|
+
export declare const ON_URL_ATT_NAME: "on_url";
|
|
71
|
+
export declare const URL_ATT_NAME: "url";
|
|
72
|
+
export declare const REF_URL_ATT_NAME: "ref_url";
|
|
73
|
+
export declare const STARTED_AT_ATT_NAME: "start_at";
|
|
74
|
+
export declare const PV_EVENTS_ATT_NAME: "events";
|
|
75
|
+
export declare const PV_PART_COUNTER_ATT_NAME: "pc";
|
|
76
|
+
export declare const CONN_COUNT_ATT_NAME: "conc";
|
|
77
|
+
export declare const COLLECT_VER_ATT_NAME: "cv";
|
|
78
|
+
export declare const VIDEO_FRAG_ATT_NAME: "vid";
|
|
79
|
+
export declare const CSS_URLS_ATT_NAME: "css_urls";
|
|
80
|
+
export declare const END_AT_ATT_NAME: "end_at";
|
|
81
|
+
export declare const LENGTH_ATT_NAME: "len";
|
|
82
|
+
export declare const IS_LAST_ATT_NAME: "last";
|
|
83
|
+
export declare const TYPE_ATT_NAME: "type";
|
|
84
|
+
export declare const OCCURRED_AT_ATT_NAME: "occ_at";
|
|
85
|
+
export declare const HTTP_CODE_ATT_NAME: "h_code";
|
|
86
|
+
export declare const JS_ERROR_ATT_NAME: "j_err";
|
|
87
|
+
export declare const GQL_ERROR_ATT_NAME: "gql_err";
|
|
88
|
+
export declare const EVENT_EVENT_TYPE: "events";
|
|
89
|
+
export declare const TAGNAME_ATT_NAME: "tag";
|
|
90
|
+
export declare const SOURCE_ATT_NAME: "src";
|
|
91
|
+
export declare const TEXT_ATT_NAME: "txt";
|
|
92
|
+
export declare const HTMLID_ATT_NAME: "hid";
|
|
93
|
+
export declare const HTTP_METHOD_ATT_NAME: "mtd";
|
|
94
|
+
export declare const HTTP_RESP_CODE_ATT_NAME: "code";
|
|
95
|
+
export declare const HTTP_RESP_TIME_ATT_NAME: "r_time";
|
|
96
|
+
export declare const HTTP_RESP_LENGTH_ATT_NAME: "resp_len";
|
|
97
|
+
export declare const HTTP_DATA_PAYLOAD_ATT_NAME: "rqp";
|
|
98
|
+
export declare const HTTP_DATA_RESP_PAYLOAD_ATT_NAME: "rsp";
|
|
99
|
+
export declare const HTTP_DATA_REQ_HEADERS_ATT_NAME: "rqh";
|
|
100
|
+
export declare const HTTP_DATA_RESP_HEADERS_ATT_NAME: "rsh";
|
|
101
|
+
export declare const JS_STACK_LINE_ATT_NAME: "line";
|
|
102
|
+
export declare const JS_STACK_COL_ATT_NAME: "column";
|
|
103
|
+
export declare const JS_STACK_METHOD_ATT_NAME: "mname";
|
|
104
|
+
export declare const JS_STACK_FILE_ATT_NAME: "file";
|
|
105
|
+
export declare const JS_STACK_FRAMES_ATT_NAME: "frames";
|
|
106
|
+
export declare const JS_STACK_MESSAGE_ATT_NAME: "msg";
|
|
107
|
+
export declare const ERROR_SOURCE_ATT_NAME: "err_src";
|
|
108
|
+
export declare const CSS_CLASS_ATT_NAME: "class";
|
|
109
|
+
export declare const SEQ_NUM_ATT_NAME: "seq_num";
|
|
110
|
+
export declare const HELP_CODE_ATT_NAME: "hc";
|
|
111
|
+
export declare const WORK_REQUEST_ATT_NAME: "wr";
|
|
112
|
+
export declare const LANG_ATT_NAME: "lang";
|
|
113
|
+
export declare const SCRIPT_ID_ATT_NAME: "script_id";
|
|
114
|
+
export declare const SCRIPT_INSTANCE_ID_ATT_NAME: "script_inst_id";
|
|
115
|
+
export declare const METROPLEX_SOCKET_INSTANCE_ID_ATT_NAME: "mp_sock_inst_id";
|
|
116
|
+
export declare const SOCKET_INSTANCE_ID_ATT_NAME: "sock_inst_id";
|
|
117
|
+
export declare const EXP_VIDEO_LENGTH_ATT_NAME: "exp_vid_len";
|
|
118
|
+
export declare const PV_EXP_VF_SEQ_ATT_NAME: "exp_vf_seq";
|
|
119
|
+
export declare const PV_EXP_PART_COUNTER_ATT_NAME: "exp_pc_seq";
|
|
120
|
+
export declare const VIDEO_CLICKS_ATT_NAME: "vid_clicks";
|
|
121
|
+
export declare const PV_CLICKS_ATT_NAME: "pv_clicks";
|
|
122
|
+
export declare const DID_CUT_PV_ATT_NAME: "did_cut_pv";
|
|
123
|
+
export declare const DID_CUT_VID_ATT_NAME: "did_cut_vid";
|
|
124
|
+
export declare const DID_START_VID_ATT_NAME: "did_start_vid";
|
|
125
|
+
export declare const HTTP_COUNT_EXPECTED_ATT_NAME: "exp_http";
|
|
126
|
+
export declare const ERR_COUNT_EXPECTED_ATT_NAME: "exp_err";
|
|
127
|
+
export declare const PV_EXP_HTTP_DATA_SEQ_ATT_NAME: "exp_http_seq";
|
|
128
|
+
export declare const PV_HTTP_PAYLOADS_COLLECTED_ATT_NAME: "http_payloads";
|
|
129
|
+
export declare const PV_HTTP_PAYLOADS_DROPPED_OVERSIZE_ATT_NAME: "http_drop_oversize";
|
|
130
|
+
export declare const PV_HTTP_PAYLOADS_DROPPED_TYPE_ATT_NAME: "http_drop_type";
|
|
131
|
+
export declare const PV_HTTP_REQUESTS_DROPPED_OVER_LIMIT: "http_over_limit";
|
|
132
|
+
export declare const HTTP_EVENT_TYPE: "http";
|
|
133
|
+
export declare const JS_EVENT_TYPE: "js";
|
|
134
|
+
export declare const GQL_EVENT_TYPE: "gql";
|
|
135
|
+
export declare const USERSTEP_EVENT_TYPE: "userstep";
|
|
136
|
+
export declare const WEBVITAL_EVENT_TYPE: "wv";
|
|
137
|
+
export declare const CLICK_EVENT_TYPE: "click";
|
|
138
|
+
export declare const KEYBOARD_EVENT_TYPE: "kbd";
|
|
139
|
+
export declare const NAVIGATION_EVENT_TYPE: "navigation";
|
|
140
|
+
export declare const LOCATION_EVENT_TYPE: "loc";
|
|
141
|
+
export declare const ERROR_EVENT_TYPE: "err";
|
|
142
|
+
export declare const PAGE_EVENT_TYPE: "page";
|
|
143
|
+
export declare const PAGE_VISIT_INFORMATION_ATT_NAME: "pvi";
|
|
144
|
+
export declare const PAGE_VISIT_PART_ATT_NAME: "pvp";
|
|
145
|
+
export declare const PAGE_VISIT_VID_FRAG_ATT_NAME: "pvvf";
|
|
146
|
+
export declare const PAGE_VISIT_META_DATA_ATT_NAME: "pvm";
|
|
147
|
+
export declare const PAGE_VISIT_HTTP_DATA_ATT_NAME: "pvh";
|
|
148
|
+
export declare const VIDEO_PART_COUNT_ATT_NAME: "vpnum";
|
|
149
|
+
export declare const CSS_SEQ_SENT: "seq_sent";
|
|
150
|
+
export declare const CSS_RECEIVED: "received";
|
|
151
|
+
export declare const NOIBU_CONFIG_WIN_ATT_NAME: "NOIBUJS_CONFIG";
|
|
152
|
+
export declare const WIN_BLOCKED_SELECTOR_ATT_NAME: "sel";
|
|
153
|
+
export declare const WIN_SCRIPT_ID_ATT_NAME: "scriptID";
|
|
154
|
+
export declare const WIN_NJS_VERSION_ATT_NAME: "njs_version";
|
|
155
|
+
export declare const ATTRIBUTE_SELECTORS_ATT_NAME: "att_sel";
|
|
156
|
+
export declare const POST_METRICS_EVENT_NAME: "noibuPostMetrics";
|
|
157
|
+
export declare const HELP_CODE_EVENT_NAME: "noibuHelpCode";
|
|
158
|
+
export declare const HTTP_DATA_COLLECTION_FLAG_NAME: "http_data_collection";
|
|
159
|
+
export declare const HTTP_DATA_PAYLOAD_URL_REGEXES_FLAG_NAME: "http_re";
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* grabs the noibujs config from the config and returns it as an object
|
|
163
|
+
*/
|
|
164
|
+
export declare function NOIBUJS_CONFIG(): Partial<Noibu.Config>;
|
|
165
|
+
export declare const MAX_BEACON_PAYLOAD_SIZE: 59000;
|
|
166
|
+
export declare const MAX_RRWEB_EVENT_BUFFER: 10;
|
|
167
|
+
export declare const MAX_METROPLEX_CONNECTION_COUNT: 100;
|
|
168
|
+
export declare const NOIBU_INPUT_URLS: string[];
|
|
169
|
+
export declare const METROPLEX_FRAG_ROUTE: "pv_part";
|
|
170
|
+
export declare const METROPLEX_ERROR_ROUTE: "collect_error";
|
|
171
|
+
export declare const METROPLEX_METRICS_ROUTE: "metrics";
|
|
172
|
+
export declare const METROPLEX_FULL_PV_ROUTE: "pv";
|
|
173
|
+
export declare const STOP_STORING_VID_SOCKET_MESSAGE: "vid_block";
|
|
174
|
+
export declare const STOP_STORING_PV_SOCKET_MESSAGE: "pv_block";
|
|
175
|
+
export declare const BLOCK_SOCKET_MESSAGE: "full_block";
|
|
176
|
+
export declare const CLOSE_CONNECTION_FORCEFULLY: "close_conn";
|
|
177
|
+
export declare const OK_SOCKET_MESSAGE: "ok";
|
|
178
|
+
export declare const XML_HTTP_REQUEST_ERROR_TYPE: "XMLHttpRequest";
|
|
179
|
+
export declare const ERROR_EVENT_ERROR_TYPE: "ErrorEvent";
|
|
180
|
+
export declare const ERROR_EVENT_UNHANDLED_REJECTION_TYPE: "UnhandledRejectionError";
|
|
181
|
+
export declare const EVENT_ERROR_TYPE: "Event";
|
|
182
|
+
export declare const RESPONSE_ERROR_TYPE: "Response";
|
|
183
|
+
export declare const GQL_ERROR_TYPE: "GQLError";
|
|
184
|
+
export declare const WRAPPED_EXCEPTION_ERROR_TYPE: "WrappedException";
|
|
185
|
+
export declare const FETCH_EXCEPTION_ERROR_TYPE: "FetchException";
|
|
186
|
+
export declare const ERROR_LOG_EVENT_ERROR_TYPE: "ErrorLogEvent";
|
|
187
|
+
export declare const CUSTOM_ERROR_EVENT_TYPE: "CustomError";
|
|
188
|
+
export declare const REACT_ERROR_EVENT_TYPE: "ReactError";
|
|
189
|
+
export declare const VUE_ERROR_EVENT_TYPE: "VueError";
|
|
190
|
+
export declare const CONSOLE_FUNCTION_OVERRIDES: readonly ["error", "warn", "log"];
|
|
191
|
+
export declare const PAGE_EVENTS_WINDOW: string[];
|
|
192
|
+
export declare const PAGE_EVENTS_DOCUMENT: string[];
|
|
193
|
+
export declare const CONTENT_TYPE: "content-type";
|
|
194
|
+
export declare const CONTENT_LENGTH: "content-length";
|
|
195
|
+
export declare const NOIBU_DOMAIN_ALL: "*.noibu.com";
|
|
196
|
+
export declare const NOIBU_DOMAIN: "noibu.com";
|
|
197
|
+
export declare const IGNORE_CSS_ATTRIBUTES: Set<string>;
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* frequency of video posts to metroplex
|
|
201
|
+
*/
|
|
202
|
+
export declare function VIDEO_POST_FREQUENCY(): string | 10000;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* frequency of pv posts to metroplex
|
|
206
|
+
*/
|
|
207
|
+
export declare function PV_POST_FREQUENCY(): string | 10000;
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* Gets the script id from the cookie object, returns default if cannot be found
|
|
211
|
+
*/
|
|
212
|
+
export declare function GET_SCRIPT_ID(): string;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* Checks if the script version is beta
|
|
216
|
+
*/
|
|
217
|
+
export declare function IS_NJS_VERSION_BETA(): boolean;
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* Gets the max metro recon number
|
|
221
|
+
*/
|
|
222
|
+
export declare function GET_MAX_METROPLEX_RECONNECTION_NUMBER(): number;
|
|
223
|
+
/**
|
|
224
|
+
*
|
|
225
|
+
* Returns the amount of time in milliseconds to delay a new connection by
|
|
226
|
+
* if we have exceeded the max consecutive connection count
|
|
227
|
+
*/
|
|
228
|
+
export declare function GET_METROPLEX_CONSECUTIVE_CONNECTION_DELAY(): number;
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* gets the max page visit size buffer
|
|
232
|
+
*/
|
|
233
|
+
export declare function GET_MAX_PAGEVISIT_SIZE(): string | 20000;
|
|
234
|
+
/**
|
|
235
|
+
*
|
|
236
|
+
* gets the attribute selectors set by the customers to match an attribute
|
|
237
|
+
*/
|
|
238
|
+
export declare function GET_ATTRIBUTE_SELECTORS(): {};
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* gets the base url for metroplex's websocket connection
|
|
242
|
+
*/
|
|
243
|
+
export declare function GET_METROPLEX_BASE_SOCKET_URL(): string;
|
|
244
|
+
/**
|
|
245
|
+
* gets the base url for metroplex's HTTP requests
|
|
246
|
+
*/
|
|
247
|
+
export declare function GET_METROPLEX_BASE_HTTP_URL(): string;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* Returns the URL that accepts http post requests
|
|
251
|
+
*/
|
|
252
|
+
export declare function GET_METROPLEX_POST_URL(): string;
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* Returns the URL for posting metrics data to Metroplex
|
|
256
|
+
*/
|
|
257
|
+
export declare function GET_METROPLEX_METRICS_URL(): string;
|
|
258
|
+
/**
|
|
259
|
+
*
|
|
260
|
+
* gets the current env
|
|
261
|
+
*/
|
|
262
|
+
export declare function JS_ENV(): string;
|
|
263
|
+
export declare const METROPLEX_RETRY_FREQUENCY: 30000;
|
|
264
|
+
export declare const CSS_URL_REGEX_STR: RegExp;
|