iframe-coordinator-cli 6.4.0 → 6.5.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/dist/assets/index-DEUCFuke.css +1 -0
- package/dist/assets/index-DejhDHus.js +57 -0
- package/dist/favicon.svg +1 -0
- package/dist/ifc-docs/assets/hierarchy.js +1 -1
- package/dist/ifc-docs/assets/highlight.css +130 -91
- package/dist/ifc-docs/assets/icons.js +20 -17
- package/dist/ifc-docs/assets/icons.svg +1 -1
- package/dist/ifc-docs/assets/main.js +2535 -5
- package/dist/ifc-docs/assets/navigation.js +2 -1
- package/dist/ifc-docs/assets/search.js +2 -1
- package/dist/ifc-docs/assets/style.css +1571 -1581
- package/dist/ifc-docs/classes/client.Client.html +2388 -99
- package/dist/ifc-docs/classes/client.WorkerClient.html +2164 -0
- package/dist/ifc-docs/classes/host.FrameRouterElement.html +850 -24
- package/dist/ifc-docs/classes/host.WorkerPool.html +879 -0
- package/dist/ifc-docs/documents/client-setup.html +579 -75
- package/dist/ifc-docs/functions/host.registerCustomElements.html +218 -3
- package/dist/ifc-docs/hierarchy.html +168 -1
- package/dist/ifc-docs/index.html +432 -31
- package/dist/ifc-docs/interfaces/client.ClientConfigOptions.html +331 -4
- package/dist/ifc-docs/interfaces/client.EventEmitter.html +752 -0
- package/dist/ifc-docs/interfaces/host.ClientConfig.html +399 -7
- package/dist/ifc-docs/interfaces/host.ClientRegistration.html +580 -24
- package/dist/ifc-docs/interfaces/host.RoutingMap.html +211 -4
- package/dist/ifc-docs/interfaces/host.WorkerAppData.html +388 -0
- package/dist/ifc-docs/interfaces/host.WorkerConfig.html +398 -0
- package/dist/ifc-docs/interfaces/host.WorkerItem.html +401 -0
- package/dist/ifc-docs/interfaces/host.WorkerRegistry.html +210 -0
- package/dist/ifc-docs/interfaces/messages.Breadcrumb.html +373 -0
- package/dist/ifc-docs/interfaces/messages.EnvData.html +510 -0
- package/dist/ifc-docs/interfaces/messages.KeyData.html +540 -0
- package/dist/ifc-docs/interfaces/messages.ModalRequest.html +381 -0
- package/dist/ifc-docs/interfaces/messages.NavRequest.html +390 -0
- package/dist/ifc-docs/interfaces/messages.Notification.html +435 -0
- package/dist/ifc-docs/interfaces/messages.PageMetadata.html +438 -0
- package/dist/ifc-docs/interfaces/messages.PromptOnLeave.html +390 -0
- package/dist/ifc-docs/interfaces/messages.Publication.html +443 -0
- package/dist/ifc-docs/modules/client.html +742 -2
- package/dist/ifc-docs/modules/host.html +647 -1
- package/dist/ifc-docs/modules/messages.html +462 -0
- package/dist/ifc-docs/modules.html +359 -1
- package/dist/ifc-docs/types/client.EnvDataHandler.html +239 -5
- package/dist/ifc-docs/types/client.EventHandler.html +247 -2
- package/dist/index.html +3 -3
- package/package.json +3 -4
- package/dist/assets/index-BLdxgMq2.css +0 -1
- package/dist/assets/index-IcxzuslN.js +0 -49
- package/dist/ifc-docs/classes/client.EventEmitter.html +0 -14
- package/dist/ifc-docs/interfaces/client.Breadcrumb.html +0 -6
- package/dist/ifc-docs/interfaces/client.EnvData.html +0 -11
- package/dist/ifc-docs/interfaces/client.KeyData.html +0 -12
- package/dist/ifc-docs/interfaces/client.ModalRequest.html +0 -6
- package/dist/ifc-docs/interfaces/client.NavRequest.html +0 -9
- package/dist/ifc-docs/interfaces/client.Notification.html +0 -9
- package/dist/ifc-docs/interfaces/client.PageMetadata.html +0 -8
- package/dist/ifc-docs/interfaces/client.PromptOnLeave.html +0 -9
- package/dist/ifc-docs/interfaces/client.Publication.html +0 -11
|
@@ -1 +1,359 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="default" lang="en" data-base="./">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="IE=edge" />
|
|
6
|
+
<title>iframe-coordinator - v6.5.1</title>
|
|
7
|
+
<meta name="description" content="Documentation for iframe-coordinator" />
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
+
<link rel="stylesheet" href="assets/style.css" />
|
|
10
|
+
<link rel="stylesheet" href="assets/highlight.css" />
|
|
11
|
+
<script defer src="assets/main.js"></script>
|
|
12
|
+
<script async src="assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
+
<script async src="assets/search.js" id="tsd-search-script"></script>
|
|
14
|
+
<script async src="assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<script>
|
|
18
|
+
document.documentElement.dataset.theme =
|
|
19
|
+
localStorage.getItem("tsd-theme") || "os";
|
|
20
|
+
document.body.style.display = "none";
|
|
21
|
+
setTimeout(
|
|
22
|
+
() =>
|
|
23
|
+
window.app
|
|
24
|
+
? app.showPage()
|
|
25
|
+
: document.body.style.removeProperty("display"),
|
|
26
|
+
500,
|
|
27
|
+
);
|
|
28
|
+
</script>
|
|
29
|
+
<header class="tsd-page-toolbar">
|
|
30
|
+
<div class="tsd-toolbar-contents container">
|
|
31
|
+
<a href="index.html" class="title">iframe-coordinator - v6.5.1</a>
|
|
32
|
+
<div id="tsd-toolbar-links"></div>
|
|
33
|
+
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
34
|
+
<svg
|
|
35
|
+
width="16"
|
|
36
|
+
height="16"
|
|
37
|
+
viewBox="0 0 16 16"
|
|
38
|
+
fill="none"
|
|
39
|
+
aria-hidden="true"
|
|
40
|
+
>
|
|
41
|
+
<use href="assets/icons.svg#icon-search"></use>
|
|
42
|
+
</svg>
|
|
43
|
+
</button>
|
|
44
|
+
<dialog id="tsd-search" aria-label="Search">
|
|
45
|
+
<input
|
|
46
|
+
role="combobox"
|
|
47
|
+
id="tsd-search-input"
|
|
48
|
+
aria-controls="tsd-search-results"
|
|
49
|
+
aria-autocomplete="list"
|
|
50
|
+
aria-expanded="true"
|
|
51
|
+
autocapitalize="off"
|
|
52
|
+
autocomplete="off"
|
|
53
|
+
placeholder="Search the docs"
|
|
54
|
+
maxlength="100"
|
|
55
|
+
/>
|
|
56
|
+
<ul role="listbox" id="tsd-search-results"></ul>
|
|
57
|
+
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
58
|
+
<div>Preparing search index...</div>
|
|
59
|
+
</div>
|
|
60
|
+
</dialog>
|
|
61
|
+
<a
|
|
62
|
+
href="#"
|
|
63
|
+
class="tsd-widget menu"
|
|
64
|
+
id="tsd-toolbar-menu-trigger"
|
|
65
|
+
data-toggle="menu"
|
|
66
|
+
aria-label="Menu"
|
|
67
|
+
><svg
|
|
68
|
+
width="16"
|
|
69
|
+
height="16"
|
|
70
|
+
viewBox="0 0 16 16"
|
|
71
|
+
fill="none"
|
|
72
|
+
aria-hidden="true"
|
|
73
|
+
>
|
|
74
|
+
<use href="assets/icons.svg#icon-menu"></use></svg
|
|
75
|
+
></a>
|
|
76
|
+
</div>
|
|
77
|
+
</header>
|
|
78
|
+
<div class="container container-main">
|
|
79
|
+
<div class="col-content">
|
|
80
|
+
<div class="tsd-page-title">
|
|
81
|
+
<ul class="tsd-breadcrumb" aria-label="Breadcrumb"></ul>
|
|
82
|
+
<h1>iframe-coordinator - v6.5.1</h1>
|
|
83
|
+
</div>
|
|
84
|
+
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
85
|
+
<summary class="tsd-accordion-summary" data-key="section-Documents">
|
|
86
|
+
<svg
|
|
87
|
+
width="20"
|
|
88
|
+
height="20"
|
|
89
|
+
viewBox="0 0 24 24"
|
|
90
|
+
fill="none"
|
|
91
|
+
aria-hidden="true"
|
|
92
|
+
>
|
|
93
|
+
<use href="assets/icons.svg#icon-chevronDown"></use>
|
|
94
|
+
</svg>
|
|
95
|
+
<h2>Documents</h2>
|
|
96
|
+
</summary>
|
|
97
|
+
<dl class="tsd-member-summaries">
|
|
98
|
+
<dt class="tsd-member-summary" id="client-setup">
|
|
99
|
+
<span class="tsd-member-summary-name"
|
|
100
|
+
><svg
|
|
101
|
+
class="tsd-kind-icon"
|
|
102
|
+
viewBox="0 0 24 24"
|
|
103
|
+
aria-label="Document"
|
|
104
|
+
>
|
|
105
|
+
<use href="assets/icons.svg#icon-8388608"></use></svg
|
|
106
|
+
><a href="documents/client-setup.html">client-setup</a
|
|
107
|
+
><a
|
|
108
|
+
href="#client-setup"
|
|
109
|
+
aria-label="Permalink"
|
|
110
|
+
class="tsd-anchor-icon"
|
|
111
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
112
|
+
<use href="assets/icons.svg#icon-anchor"></use></svg></a
|
|
113
|
+
></span>
|
|
114
|
+
</dt>
|
|
115
|
+
<dd class="tsd-member-summary"></dd>
|
|
116
|
+
</dl>
|
|
117
|
+
</details>
|
|
118
|
+
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
119
|
+
<summary class="tsd-accordion-summary" data-key="section-Modules">
|
|
120
|
+
<svg
|
|
121
|
+
width="20"
|
|
122
|
+
height="20"
|
|
123
|
+
viewBox="0 0 24 24"
|
|
124
|
+
fill="none"
|
|
125
|
+
aria-hidden="true"
|
|
126
|
+
>
|
|
127
|
+
<use href="assets/icons.svg#icon-chevronDown"></use>
|
|
128
|
+
</svg>
|
|
129
|
+
<h2>Modules</h2>
|
|
130
|
+
</summary>
|
|
131
|
+
<dl class="tsd-member-summaries">
|
|
132
|
+
<dt class="tsd-member-summary" id="client">
|
|
133
|
+
<span class="tsd-member-summary-name"
|
|
134
|
+
><svg
|
|
135
|
+
class="tsd-kind-icon"
|
|
136
|
+
viewBox="0 0 24 24"
|
|
137
|
+
aria-label="Module"
|
|
138
|
+
>
|
|
139
|
+
<use href="assets/icons.svg#icon-2"></use></svg
|
|
140
|
+
><a href="modules/client.html">client</a
|
|
141
|
+
><a
|
|
142
|
+
href="#client"
|
|
143
|
+
aria-label="Permalink"
|
|
144
|
+
class="tsd-anchor-icon"
|
|
145
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
146
|
+
<use href="assets/icons.svg#icon-anchor"></use></svg></a
|
|
147
|
+
></span>
|
|
148
|
+
</dt>
|
|
149
|
+
<dd class="tsd-member-summary"></dd>
|
|
150
|
+
<dt class="tsd-member-summary" id="host">
|
|
151
|
+
<span class="tsd-member-summary-name"
|
|
152
|
+
><svg
|
|
153
|
+
class="tsd-kind-icon"
|
|
154
|
+
viewBox="0 0 24 24"
|
|
155
|
+
aria-label="Module"
|
|
156
|
+
>
|
|
157
|
+
<use href="assets/icons.svg#icon-2"></use></svg
|
|
158
|
+
><a href="modules/host.html">host</a
|
|
159
|
+
><a href="#host" aria-label="Permalink" class="tsd-anchor-icon"
|
|
160
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
161
|
+
<use href="assets/icons.svg#icon-anchor"></use></svg></a
|
|
162
|
+
></span>
|
|
163
|
+
</dt>
|
|
164
|
+
<dd class="tsd-member-summary"></dd>
|
|
165
|
+
<dt class="tsd-member-summary" id="messages">
|
|
166
|
+
<span class="tsd-member-summary-name"
|
|
167
|
+
><svg
|
|
168
|
+
class="tsd-kind-icon"
|
|
169
|
+
viewBox="0 0 24 24"
|
|
170
|
+
aria-label="Module"
|
|
171
|
+
>
|
|
172
|
+
<use href="assets/icons.svg#icon-2"></use></svg
|
|
173
|
+
><a href="modules/messages.html">messages</a
|
|
174
|
+
><a
|
|
175
|
+
href="#messages"
|
|
176
|
+
aria-label="Permalink"
|
|
177
|
+
class="tsd-anchor-icon"
|
|
178
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
179
|
+
<use href="assets/icons.svg#icon-anchor"></use></svg></a
|
|
180
|
+
></span>
|
|
181
|
+
</dt>
|
|
182
|
+
<dd class="tsd-member-summary"></dd>
|
|
183
|
+
</dl>
|
|
184
|
+
</details>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="col-sidebar">
|
|
187
|
+
<div class="page-menu">
|
|
188
|
+
<div class="tsd-navigation settings">
|
|
189
|
+
<details class="tsd-accordion">
|
|
190
|
+
<summary class="tsd-accordion-summary">
|
|
191
|
+
<svg
|
|
192
|
+
width="20"
|
|
193
|
+
height="20"
|
|
194
|
+
viewBox="0 0 24 24"
|
|
195
|
+
fill="none"
|
|
196
|
+
aria-hidden="true"
|
|
197
|
+
>
|
|
198
|
+
<use href="assets/icons.svg#icon-chevronDown"></use>
|
|
199
|
+
</svg>
|
|
200
|
+
<h3>Settings</h3>
|
|
201
|
+
</summary>
|
|
202
|
+
<div class="tsd-accordion-details">
|
|
203
|
+
<div class="tsd-filter-visibility">
|
|
204
|
+
<span class="settings-label">Member Visibility</span>
|
|
205
|
+
<ul id="tsd-filter-options">
|
|
206
|
+
<li class="tsd-filter-item">
|
|
207
|
+
<label class="tsd-filter-input"
|
|
208
|
+
><input
|
|
209
|
+
type="checkbox"
|
|
210
|
+
id="tsd-filter-inherited"
|
|
211
|
+
name="inherited"
|
|
212
|
+
checked
|
|
213
|
+
/><svg
|
|
214
|
+
width="32"
|
|
215
|
+
height="32"
|
|
216
|
+
viewBox="0 0 32 32"
|
|
217
|
+
aria-hidden="true"
|
|
218
|
+
>
|
|
219
|
+
<rect
|
|
220
|
+
class="tsd-checkbox-background"
|
|
221
|
+
width="30"
|
|
222
|
+
height="30"
|
|
223
|
+
x="1"
|
|
224
|
+
y="1"
|
|
225
|
+
rx="6"
|
|
226
|
+
fill="none"
|
|
227
|
+
></rect>
|
|
228
|
+
<path
|
|
229
|
+
class="tsd-checkbox-checkmark"
|
|
230
|
+
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
231
|
+
stroke="none"
|
|
232
|
+
stroke-width="3.5"
|
|
233
|
+
stroke-linejoin="round"
|
|
234
|
+
fill="none"
|
|
235
|
+
></path></svg
|
|
236
|
+
><span>Inherited</span></label
|
|
237
|
+
>
|
|
238
|
+
</li>
|
|
239
|
+
</ul>
|
|
240
|
+
</div>
|
|
241
|
+
<div class="tsd-theme-toggle">
|
|
242
|
+
<label class="settings-label" for="tsd-theme">Theme</label
|
|
243
|
+
><select id="tsd-theme">
|
|
244
|
+
<option value="os">OS</option>
|
|
245
|
+
<option value="light">Light</option>
|
|
246
|
+
<option value="dark">Dark</option>
|
|
247
|
+
</select>
|
|
248
|
+
</div>
|
|
249
|
+
</div>
|
|
250
|
+
</details>
|
|
251
|
+
</div>
|
|
252
|
+
<details open class="tsd-accordion tsd-page-navigation">
|
|
253
|
+
<summary class="tsd-accordion-summary">
|
|
254
|
+
<svg
|
|
255
|
+
width="20"
|
|
256
|
+
height="20"
|
|
257
|
+
viewBox="0 0 24 24"
|
|
258
|
+
fill="none"
|
|
259
|
+
aria-hidden="true"
|
|
260
|
+
>
|
|
261
|
+
<use href="assets/icons.svg#icon-chevronDown"></use>
|
|
262
|
+
</svg>
|
|
263
|
+
<h3>On This Page</h3>
|
|
264
|
+
</summary>
|
|
265
|
+
<div class="tsd-accordion-details">
|
|
266
|
+
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
267
|
+
<summary
|
|
268
|
+
class="tsd-accordion-summary"
|
|
269
|
+
data-key="section-Documents"
|
|
270
|
+
>
|
|
271
|
+
<svg
|
|
272
|
+
width="20"
|
|
273
|
+
height="20"
|
|
274
|
+
viewBox="0 0 24 24"
|
|
275
|
+
fill="none"
|
|
276
|
+
aria-hidden="true"
|
|
277
|
+
>
|
|
278
|
+
<use href="assets/icons.svg#icon-chevronDown"></use></svg
|
|
279
|
+
>Documents
|
|
280
|
+
</summary>
|
|
281
|
+
<div>
|
|
282
|
+
<a href="#client-setup"
|
|
283
|
+
><svg
|
|
284
|
+
class="tsd-kind-icon"
|
|
285
|
+
viewBox="0 0 24 24"
|
|
286
|
+
aria-label="Document"
|
|
287
|
+
>
|
|
288
|
+
<use href="assets/icons.svg#icon-8388608"></use></svg
|
|
289
|
+
><span>client-<wbr />setup</span></a
|
|
290
|
+
>
|
|
291
|
+
</div>
|
|
292
|
+
</details>
|
|
293
|
+
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
294
|
+
<summary
|
|
295
|
+
class="tsd-accordion-summary"
|
|
296
|
+
data-key="section-Modules"
|
|
297
|
+
>
|
|
298
|
+
<svg
|
|
299
|
+
width="20"
|
|
300
|
+
height="20"
|
|
301
|
+
viewBox="0 0 24 24"
|
|
302
|
+
fill="none"
|
|
303
|
+
aria-hidden="true"
|
|
304
|
+
>
|
|
305
|
+
<use href="assets/icons.svg#icon-chevronDown"></use></svg
|
|
306
|
+
>Modules
|
|
307
|
+
</summary>
|
|
308
|
+
<div>
|
|
309
|
+
<a href="#client"
|
|
310
|
+
><svg
|
|
311
|
+
class="tsd-kind-icon"
|
|
312
|
+
viewBox="0 0 24 24"
|
|
313
|
+
aria-label="Module"
|
|
314
|
+
>
|
|
315
|
+
<use href="assets/icons.svg#icon-2"></use></svg
|
|
316
|
+
><span>client</span></a
|
|
317
|
+
><a href="#host"
|
|
318
|
+
><svg
|
|
319
|
+
class="tsd-kind-icon"
|
|
320
|
+
viewBox="0 0 24 24"
|
|
321
|
+
aria-label="Module"
|
|
322
|
+
>
|
|
323
|
+
<use href="assets/icons.svg#icon-2"></use></svg
|
|
324
|
+
><span>host</span></a
|
|
325
|
+
><a href="#messages"
|
|
326
|
+
><svg
|
|
327
|
+
class="tsd-kind-icon"
|
|
328
|
+
viewBox="0 0 24 24"
|
|
329
|
+
aria-label="Module"
|
|
330
|
+
>
|
|
331
|
+
<use href="assets/icons.svg#icon-2"></use></svg
|
|
332
|
+
><span>messages</span></a
|
|
333
|
+
>
|
|
334
|
+
</div>
|
|
335
|
+
</details>
|
|
336
|
+
</div>
|
|
337
|
+
</details>
|
|
338
|
+
</div>
|
|
339
|
+
<div class="site-menu">
|
|
340
|
+
<nav class="tsd-navigation">
|
|
341
|
+
<a href="modules.html" class="current"
|
|
342
|
+
>iframe-coordinator - v6.5.1</a
|
|
343
|
+
>
|
|
344
|
+
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
345
|
+
<li>Loading...</li>
|
|
346
|
+
</ul>
|
|
347
|
+
</nav>
|
|
348
|
+
</div>
|
|
349
|
+
</div>
|
|
350
|
+
</div>
|
|
351
|
+
<footer>
|
|
352
|
+
<p class="tsd-generator">
|
|
353
|
+
Generated using
|
|
354
|
+
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
355
|
+
</p>
|
|
356
|
+
</footer>
|
|
357
|
+
<div class="overlay"></div>
|
|
358
|
+
</body>
|
|
359
|
+
</html>
|
|
@@ -1,5 +1,239 @@
|
|
|
1
|
-
<!
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="default" lang="en" data-base="../">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="IE=edge" />
|
|
6
|
+
<title>EnvDataHandler | iframe-coordinator - v6.5.1</title>
|
|
7
|
+
<meta name="description" content="Documentation for iframe-coordinator" />
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css" />
|
|
10
|
+
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
11
|
+
<script defer src="../assets/main.js"></script>
|
|
12
|
+
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
+
<script async src="../assets/search.js" id="tsd-search-script"></script>
|
|
14
|
+
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<script>
|
|
18
|
+
document.documentElement.dataset.theme =
|
|
19
|
+
localStorage.getItem("tsd-theme") || "os";
|
|
20
|
+
document.body.style.display = "none";
|
|
21
|
+
setTimeout(
|
|
22
|
+
() =>
|
|
23
|
+
window.app
|
|
24
|
+
? app.showPage()
|
|
25
|
+
: document.body.style.removeProperty("display"),
|
|
26
|
+
500,
|
|
27
|
+
);
|
|
28
|
+
</script>
|
|
29
|
+
<header class="tsd-page-toolbar">
|
|
30
|
+
<div class="tsd-toolbar-contents container">
|
|
31
|
+
<a href="../index.html" class="title">iframe-coordinator - v6.5.1</a>
|
|
32
|
+
<div id="tsd-toolbar-links"></div>
|
|
33
|
+
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
34
|
+
<svg
|
|
35
|
+
width="16"
|
|
36
|
+
height="16"
|
|
37
|
+
viewBox="0 0 16 16"
|
|
38
|
+
fill="none"
|
|
39
|
+
aria-hidden="true"
|
|
40
|
+
>
|
|
41
|
+
<use href="../assets/icons.svg#icon-search"></use>
|
|
42
|
+
</svg>
|
|
43
|
+
</button>
|
|
44
|
+
<dialog id="tsd-search" aria-label="Search">
|
|
45
|
+
<input
|
|
46
|
+
role="combobox"
|
|
47
|
+
id="tsd-search-input"
|
|
48
|
+
aria-controls="tsd-search-results"
|
|
49
|
+
aria-autocomplete="list"
|
|
50
|
+
aria-expanded="true"
|
|
51
|
+
autocapitalize="off"
|
|
52
|
+
autocomplete="off"
|
|
53
|
+
placeholder="Search the docs"
|
|
54
|
+
maxlength="100"
|
|
55
|
+
/>
|
|
56
|
+
<ul role="listbox" id="tsd-search-results"></ul>
|
|
57
|
+
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
58
|
+
<div>Preparing search index...</div>
|
|
59
|
+
</div>
|
|
60
|
+
</dialog>
|
|
61
|
+
<a
|
|
62
|
+
href="#"
|
|
63
|
+
class="tsd-widget menu"
|
|
64
|
+
id="tsd-toolbar-menu-trigger"
|
|
65
|
+
data-toggle="menu"
|
|
66
|
+
aria-label="Menu"
|
|
67
|
+
><svg
|
|
68
|
+
width="16"
|
|
69
|
+
height="16"
|
|
70
|
+
viewBox="0 0 16 16"
|
|
71
|
+
fill="none"
|
|
72
|
+
aria-hidden="true"
|
|
73
|
+
>
|
|
74
|
+
<use href="../assets/icons.svg#icon-menu"></use></svg
|
|
75
|
+
></a>
|
|
76
|
+
</div>
|
|
77
|
+
</header>
|
|
78
|
+
<div class="container container-main">
|
|
79
|
+
<div class="col-content">
|
|
80
|
+
<div class="tsd-page-title">
|
|
81
|
+
<ul class="tsd-breadcrumb" aria-label="Breadcrumb">
|
|
82
|
+
<li><a href="../modules/client.html">client</a></li>
|
|
83
|
+
<li><a href="" aria-current="page">EnvDataHandler</a></li>
|
|
84
|
+
</ul>
|
|
85
|
+
<h1>Type Alias EnvDataHandler</h1>
|
|
86
|
+
</div>
|
|
87
|
+
<div class="tsd-signature">
|
|
88
|
+
<span class="tsd-kind-type-alias">EnvDataHandler</span
|
|
89
|
+
><span class="tsd-signature-symbol">:</span>
|
|
90
|
+
<span class="tsd-signature-symbol">(</span
|
|
91
|
+
><span class="tsd-kind-parameter">envData</span
|
|
92
|
+
><span class="tsd-signature-symbol">:</span>
|
|
93
|
+
<a
|
|
94
|
+
href="../interfaces/messages.EnvData.html"
|
|
95
|
+
class="tsd-signature-type tsd-kind-interface"
|
|
96
|
+
>EnvData</a
|
|
97
|
+
><span class="tsd-signature-symbol">)</span>
|
|
98
|
+
<span class="tsd-signature-symbol">=></span>
|
|
99
|
+
<span class="tsd-signature-type">void</span>
|
|
100
|
+
</div>
|
|
101
|
+
<div class="tsd-type-declaration">
|
|
102
|
+
<h4>Type Declaration</h4>
|
|
103
|
+
<ul class="tsd-parameters">
|
|
104
|
+
<li class="tsd-parameter-signature">
|
|
105
|
+
<ul class="tsd-signatures">
|
|
106
|
+
<li class="tsd-signature" id="__type">
|
|
107
|
+
<span class="tsd-signature-symbol">(</span
|
|
108
|
+
><span class="tsd-kind-parameter">envData</span
|
|
109
|
+
><span class="tsd-signature-symbol">:</span>
|
|
110
|
+
<a
|
|
111
|
+
href="../interfaces/messages.EnvData.html"
|
|
112
|
+
class="tsd-signature-type tsd-kind-interface"
|
|
113
|
+
>EnvData</a
|
|
114
|
+
><span class="tsd-signature-symbol">)</span
|
|
115
|
+
><span class="tsd-signature-symbol">:</span>
|
|
116
|
+
<span class="tsd-signature-type">void</span>
|
|
117
|
+
</li>
|
|
118
|
+
<li class="tsd-description">
|
|
119
|
+
<div class="tsd-parameters">
|
|
120
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
121
|
+
<ul class="tsd-parameter-list">
|
|
122
|
+
<li>
|
|
123
|
+
<span
|
|
124
|
+
><span class="tsd-kind-parameter">envData</span>:
|
|
125
|
+
<a
|
|
126
|
+
href="../interfaces/messages.EnvData.html"
|
|
127
|
+
class="tsd-signature-type tsd-kind-interface"
|
|
128
|
+
>EnvData</a
|
|
129
|
+
></span
|
|
130
|
+
>
|
|
131
|
+
</li>
|
|
132
|
+
</ul>
|
|
133
|
+
</div>
|
|
134
|
+
<h4 class="tsd-returns-title">
|
|
135
|
+
Returns <span class="tsd-signature-type">void</span>
|
|
136
|
+
</h4>
|
|
137
|
+
</li>
|
|
138
|
+
</ul>
|
|
139
|
+
</li>
|
|
140
|
+
</ul>
|
|
141
|
+
</div>
|
|
142
|
+
<aside class="tsd-sources">
|
|
143
|
+
<ul>
|
|
144
|
+
<li>
|
|
145
|
+
Defined in
|
|
146
|
+
<a
|
|
147
|
+
href="https://github.com/purecloudlabs/iframe-coordinator/blob/c66985bfb186111ea5faaed3c49c76f23c1e0800/packages/iframe-coordinator/src/AbstractClient.ts#L411"
|
|
148
|
+
>AbstractClient.ts:411</a
|
|
149
|
+
>
|
|
150
|
+
</li>
|
|
151
|
+
</ul>
|
|
152
|
+
</aside>
|
|
153
|
+
</div>
|
|
154
|
+
<div class="col-sidebar">
|
|
155
|
+
<div class="page-menu">
|
|
156
|
+
<div class="tsd-navigation settings">
|
|
157
|
+
<details class="tsd-accordion">
|
|
158
|
+
<summary class="tsd-accordion-summary">
|
|
159
|
+
<svg
|
|
160
|
+
width="20"
|
|
161
|
+
height="20"
|
|
162
|
+
viewBox="0 0 24 24"
|
|
163
|
+
fill="none"
|
|
164
|
+
aria-hidden="true"
|
|
165
|
+
>
|
|
166
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
167
|
+
</svg>
|
|
168
|
+
<h3>Settings</h3>
|
|
169
|
+
</summary>
|
|
170
|
+
<div class="tsd-accordion-details">
|
|
171
|
+
<div class="tsd-filter-visibility">
|
|
172
|
+
<span class="settings-label">Member Visibility</span>
|
|
173
|
+
<ul id="tsd-filter-options">
|
|
174
|
+
<li class="tsd-filter-item">
|
|
175
|
+
<label class="tsd-filter-input"
|
|
176
|
+
><input
|
|
177
|
+
type="checkbox"
|
|
178
|
+
id="tsd-filter-inherited"
|
|
179
|
+
name="inherited"
|
|
180
|
+
checked
|
|
181
|
+
/><svg
|
|
182
|
+
width="32"
|
|
183
|
+
height="32"
|
|
184
|
+
viewBox="0 0 32 32"
|
|
185
|
+
aria-hidden="true"
|
|
186
|
+
>
|
|
187
|
+
<rect
|
|
188
|
+
class="tsd-checkbox-background"
|
|
189
|
+
width="30"
|
|
190
|
+
height="30"
|
|
191
|
+
x="1"
|
|
192
|
+
y="1"
|
|
193
|
+
rx="6"
|
|
194
|
+
fill="none"
|
|
195
|
+
></rect>
|
|
196
|
+
<path
|
|
197
|
+
class="tsd-checkbox-checkmark"
|
|
198
|
+
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
199
|
+
stroke="none"
|
|
200
|
+
stroke-width="3.5"
|
|
201
|
+
stroke-linejoin="round"
|
|
202
|
+
fill="none"
|
|
203
|
+
></path></svg
|
|
204
|
+
><span>Inherited</span></label
|
|
205
|
+
>
|
|
206
|
+
</li>
|
|
207
|
+
</ul>
|
|
208
|
+
</div>
|
|
209
|
+
<div class="tsd-theme-toggle">
|
|
210
|
+
<label class="settings-label" for="tsd-theme">Theme</label
|
|
211
|
+
><select id="tsd-theme">
|
|
212
|
+
<option value="os">OS</option>
|
|
213
|
+
<option value="light">Light</option>
|
|
214
|
+
<option value="dark">Dark</option>
|
|
215
|
+
</select>
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
</details>
|
|
219
|
+
</div>
|
|
220
|
+
</div>
|
|
221
|
+
<div class="site-menu">
|
|
222
|
+
<nav class="tsd-navigation">
|
|
223
|
+
<a href="../modules.html">iframe-coordinator - v6.5.1</a>
|
|
224
|
+
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
225
|
+
<li>Loading...</li>
|
|
226
|
+
</ul>
|
|
227
|
+
</nav>
|
|
228
|
+
</div>
|
|
229
|
+
</div>
|
|
230
|
+
</div>
|
|
231
|
+
<footer>
|
|
232
|
+
<p class="tsd-generator">
|
|
233
|
+
Generated using
|
|
234
|
+
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
235
|
+
</p>
|
|
236
|
+
</footer>
|
|
237
|
+
<div class="overlay"></div>
|
|
238
|
+
</body>
|
|
239
|
+
</html>
|