@arcgis/api-extractor 5.0.0-next.8 → 5.0.0-next.80
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/apiJson.d.ts +349 -517
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +14 -0
- package/dist/config/typeReferences/docLinkAdditions.d.ts +51 -0
- package/dist/config/typeReferences/globals.d.ts +11 -0
- package/dist/config/typeReferences/stringDocLinkAdditions.d.ts +17 -0
- package/dist/config/typeReferences/typeScriptGlobals.json.d.ts +3 -0
- package/dist/diff/diffApiJson.d.ts +23 -0
- package/dist/diff/fetchApiJsonFromNpm.d.ts +7 -0
- package/dist/diff/index.d.ts +3 -0
- package/dist/diff/index.js +149 -0
- package/dist/diff/types.d.ts +83 -0
- package/dist/diffTypes/index.d.ts +24 -0
- package/dist/diffTypes/index.js +69 -0
- package/dist/extractor/ApiExtractor.d.ts +138 -0
- package/dist/extractor/config.d.ts +66 -0
- package/dist/index.d.ts +12 -8
- package/dist/index.js +781 -228
- package/dist/internalTypeScriptApis.d.ts +31 -0
- package/dist/types.d.ts +18 -21
- package/dist/uiUtils/index.d.ts +21 -0
- package/dist/uiUtils/index.js +57 -0
- package/dist/utils/apiHelpers.d.ts +61 -2
- package/dist/utils/astHelpers.d.ts +14 -2
- package/dist/utils/error.d.ts +6 -1
- package/dist/utils/jsDocHelpers.d.ts +2 -0
- package/dist/utils/jsDocParser.d.ts +46 -0
- package/dist/utils/jsDocPrinter.d.ts +13 -0
- package/dist/utils/partPrinter.d.ts +23 -0
- package/dist/utils/print.d.ts +0 -1
- package/package.json +16 -5
- package/dist/extractor/index.d.ts +0 -46
- package/dist/utils/docHelpers.d.ts +0 -9
- /package/dist/{ensureValidType.d.ts → ensureCemCompatibility.d.ts} +0 -0
package/dist/index.js
CHANGED
|
@@ -1,13 +1,66 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import { mappedFind as
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import d from "typescript";
|
|
2
|
+
import $, { supportsColorStderr as z } from "chalk";
|
|
3
|
+
import { path as q } from "@arcgis/components-build-utils";
|
|
4
|
+
import { mappedFind as J } from "@arcgis/toolkit/array";
|
|
5
|
+
const j = "@arcgis/api-extractor", X = "5.0.0-next.80", P = {
|
|
6
|
+
name: j,
|
|
7
|
+
version: X
|
|
8
|
+
};
|
|
9
|
+
let A;
|
|
10
|
+
function Q(e) {
|
|
11
|
+
return A ??= d.createPrinter(), A.printNode(d.EmitHint.Unspecified, e, void 0);
|
|
12
|
+
}
|
|
13
|
+
function Y(e, t) {
|
|
14
|
+
return e.pos !== -1 && e.end !== -1 && t !== void 0 ? e.getText(t) : Q(e);
|
|
15
|
+
}
|
|
16
|
+
let N = 0;
|
|
17
|
+
function Ie(e = 0) {
|
|
18
|
+
N = e;
|
|
19
|
+
}
|
|
20
|
+
let B = console.error;
|
|
21
|
+
function Pe(e) {
|
|
22
|
+
B = e;
|
|
23
|
+
}
|
|
24
|
+
const Z = {
|
|
25
|
+
getCurrentDirectory: process.cwd,
|
|
26
|
+
getCanonicalFileName: (e) => e,
|
|
27
|
+
getNewLine: () => d.sys.newLine
|
|
28
|
+
};
|
|
29
|
+
function g(e, { file: t, node: n, scope: o, start: r, length: a }) {
|
|
30
|
+
N += 1, process.exitCode = 1, r ??= n === void 0 || n.pos === -1 ? -1 : n.getStart(t, !1);
|
|
31
|
+
const i = n?.end ?? -1;
|
|
32
|
+
a ??= i === -1 ? -1 : Math.max(1, i - r);
|
|
33
|
+
const s = r >= 0 && a >= 0, c = !s && o !== void 0, p = {
|
|
34
|
+
category: d.DiagnosticCategory.Error,
|
|
35
|
+
code: s ? P.name : ee,
|
|
36
|
+
file: c ? void 0 : t,
|
|
37
|
+
start: s ? r : 0,
|
|
38
|
+
length: s ? a : 0,
|
|
39
|
+
messageText: (c ? `${$.cyan(o)}: ` : "") + e + (s || n === void 0 ? "" : `
|
|
40
|
+
|
|
41
|
+
${Y(n, t)}`)
|
|
42
|
+
}, u = d.formatDiagnosticsWithColorAndContext([p], Z), l = z ? u : u.replaceAll(te, "");
|
|
43
|
+
B(l);
|
|
44
|
+
}
|
|
45
|
+
const ee = 1490, te = /\x1B\[[0-9;]*m/gu, De = (e) => e.kind === "method", xe = (e) => e.kind === "field";
|
|
46
|
+
function ne(e, t) {
|
|
47
|
+
const n = e.sourcePath, o = t.sourcePath;
|
|
48
|
+
let r = 0;
|
|
49
|
+
for (; ; ) {
|
|
50
|
+
const a = n.indexOf("/", r), i = o.indexOf("/", r);
|
|
51
|
+
if (a === -1)
|
|
52
|
+
return i === -1 ? n.slice(r) < o.slice(r) ? -1 : 1 : -1;
|
|
53
|
+
if (i === -1)
|
|
54
|
+
return 1;
|
|
55
|
+
{
|
|
56
|
+
const s = n.slice(r, a), c = o.slice(r, i);
|
|
57
|
+
if (s !== c)
|
|
58
|
+
return s < c ? -1 : 1;
|
|
59
|
+
r = a + 1;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
const Ae = "global:", Ge = /* @__PURE__ */ new Set([
|
|
11
64
|
"example",
|
|
12
65
|
"see",
|
|
13
66
|
"param",
|
|
@@ -15,271 +68,771 @@ const G = "global:", C = /* @__PURE__ */ new Set([
|
|
|
15
68
|
"throws",
|
|
16
69
|
"slot",
|
|
17
70
|
"csspart",
|
|
18
|
-
"cssstate"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
71
|
+
"cssstate",
|
|
72
|
+
"remarks",
|
|
73
|
+
"privateRemarks"
|
|
74
|
+
]), oe = /* @__PURE__ */ new Set(["example", "see"]);
|
|
75
|
+
function Oe(e, t) {
|
|
76
|
+
if (e.description && (e.description = e.description.replaceAll(M, t.resolveJsDocLink).replaceAll(t.alternativeDocumentationHost, t.normalizedDocumentationHost), e.description.includes("](.") && h(T, e.description, t)), e.docsTags !== void 0)
|
|
77
|
+
for (let n = 0; n < e.docsTags.length; n++) {
|
|
78
|
+
const o = e.docsTags[n];
|
|
79
|
+
o.text && (o.text = o.text.replaceAll(M, t.resolveJsDocLink).replaceAll(t.alternativeDocumentationHost, t.normalizedDocumentationHost), o.text.includes("](.") && h(T, o.text, t));
|
|
80
|
+
}
|
|
81
|
+
typeof e.deprecated == "string" && (e.deprecated = e.deprecated.replaceAll(M, t.resolveJsDocLink).replaceAll(t.alternativeDocumentationHost, t.normalizedDocumentationHost), e.deprecated.includes("](.") && h(T, e.deprecated, t));
|
|
82
|
+
}
|
|
83
|
+
const T = "Unexpected relative markdown link. For links to API within the package use {@link}. For all other links, use absolute markdown. Documentation: https://webgis.esri.com/webgis/core/core/documenting-api#link";
|
|
84
|
+
function h(e, t, n) {
|
|
85
|
+
const o = n.file?.text.indexOf(t) ?? -1;
|
|
86
|
+
g(`${e}${o === -1 ? `. Found in: ${t}` : ""}`, {
|
|
87
|
+
file: n.file,
|
|
88
|
+
node: void 0,
|
|
89
|
+
scope: n.file === void 0 ? n.moduleName : void 0,
|
|
90
|
+
start: o,
|
|
91
|
+
length: t.length
|
|
92
|
+
});
|
|
22
93
|
}
|
|
23
|
-
|
|
24
|
-
|
|
94
|
+
const M = /\{@link +([^}]+)\}/gu, K = new Intl.Collator("en", { numeric: !0 }).compare, Fe = (e, t) => K(e.name, t.name), ke = (e, t) => e.static !== void 0 && t.static === void 0 ? -1 : t.static !== void 0 && e.static === void 0 ? 1 : e.name === void 0 ? t.name === void 0 ? 0 : -1 : t.name === void 0 || "return" in e && !("return" in t) ? 1 : "return" in t && !("return" in e) ? -1 : K(e.name, t.name);
|
|
95
|
+
function Ve(e, t) {
|
|
96
|
+
if (e.length === 0)
|
|
97
|
+
return;
|
|
98
|
+
const n = t.matchAll(re), o = [];
|
|
99
|
+
for (const r of n) {
|
|
100
|
+
const a = e.find((i) => i.name === r[0]);
|
|
101
|
+
a !== void 0 && o.push({ ...a, start: r.index, end: r.index + a.name.length });
|
|
102
|
+
}
|
|
103
|
+
return o.length === 0 ? void 0 : o;
|
|
25
104
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
105
|
+
const re = /"[^"]+"|'[^"]+'|\w+/gu, G = (e) => e.name ?? (e.kind === "constructor" ? "constructor" : "call-signature"), b = (e) => e.static === !0 ? `static ${G(e)}` : G(e), _e = (e) => ("bubbles" in e ? "@" : "") + (e.name ?? (e.kind === "constructor" ? "constructor" : "")) + ("return" in e ? "()" : "");
|
|
106
|
+
function R(e, t, n = -1) {
|
|
107
|
+
"description" in t && (t.description ??= e.description), "deprecated" in t && (t.deprecated ??= e.deprecated), "return" in t && e.return !== void 0 && (t.return.description ??= e.return?.description), "readonly" in t && (t.readonly ??= e.readonly);
|
|
108
|
+
const { docsTags: o } = e, r = t;
|
|
109
|
+
if (n !== -1 && (o === void 0 && r.docsTags.length === 1 ? r.docsTags = void 0 : r.docsTags.splice(n, 1)), o !== void 0) {
|
|
110
|
+
r.docsTags ??= [];
|
|
111
|
+
const a = /* @__PURE__ */ new Set();
|
|
112
|
+
for (let i = 0; i < r.docsTags.length; i++)
|
|
113
|
+
a.add(r.docsTags[i].name);
|
|
114
|
+
for (let i = 0; i < o.length; i++) {
|
|
115
|
+
const s = o[i];
|
|
116
|
+
a.has(s.name) && !oe.has(s.name) || r.docsTags.push(s);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
31
119
|
}
|
|
32
|
-
const
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
120
|
+
const We = (e) => e.modifiers?.some?.(
|
|
121
|
+
(t) => t.kind === d.SyntaxKind.StaticKeyword || t.kind === d.SyntaxKind.PrivateKeyword || t.kind === d.SyntaxKind.ProtectedKeyword
|
|
122
|
+
) ?? !1;
|
|
123
|
+
function we(e, t, n) {
|
|
124
|
+
if (!t.default && "initializer" in e && e.initializer) {
|
|
125
|
+
const o = U(e.initializer);
|
|
126
|
+
ae(o) && (t.default = o.getText(n));
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
const ae = (e) => d.isLiteralExpression(e) || e.kind === d.SyntaxKind.TrueKeyword || e.kind === d.SyntaxKind.FalseKeyword || d.isPrefixUnaryExpression(e) && d.isLiteralExpression(e.operand);
|
|
130
|
+
function U(e) {
|
|
131
|
+
return d.isSatisfiesExpression(e) || d.isParenthesizedExpression(e) ? U(e.expression) : e;
|
|
132
|
+
}
|
|
133
|
+
function He(e) {
|
|
134
|
+
if (e !== void 0) {
|
|
135
|
+
if (d.isIdentifier(e) || d.isStringLiteralLike(e))
|
|
136
|
+
return e.text;
|
|
137
|
+
if (d.isComputedPropertyName(e)) {
|
|
138
|
+
if (d.isStringLiteralLike(e.expression))
|
|
139
|
+
return e.expression.text;
|
|
140
|
+
if (d.isPropertyAccessExpression(e.expression) && d.isIdentifier(e.expression.expression) && e.expression.expression.text === "Symbol")
|
|
141
|
+
return `[Symbol.${e.expression.name.text}]`;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
const Ne = ({ modifiers: e = [] }, t) => J(
|
|
146
|
+
e,
|
|
147
|
+
(n) => d.isDecorator(n) && d.isCallExpression(n.expression) && d.isIdentifier(n.expression.expression) && n.expression.expression.escapedText === t ? n.expression : void 0
|
|
148
|
+
);
|
|
149
|
+
function Be(e, t) {
|
|
150
|
+
return e.kind === d.SyntaxKind.TrueKeyword ? !0 : (e.kind === d.SyntaxKind.FalseKeyword || g(
|
|
151
|
+
"Expected boolean literal (true or false) rather than variable/expression - the value must be statically analyzable",
|
|
152
|
+
{
|
|
153
|
+
file: t,
|
|
154
|
+
node: e
|
|
155
|
+
}
|
|
156
|
+
), !1);
|
|
157
|
+
}
|
|
158
|
+
function ie(e) {
|
|
159
|
+
const t = e.lastIndexOf("/"), n = e.indexOf(".", t === -1 ? 0 : t + 1);
|
|
160
|
+
return n === -1 ? e : e.slice(0, n);
|
|
54
161
|
}
|
|
55
|
-
const
|
|
56
|
-
class
|
|
57
|
-
constructor(
|
|
58
|
-
this.options =
|
|
162
|
+
const O = "developers.arcgis.com", F = "next.gha.afd.arcgis.com";
|
|
163
|
+
class Ke {
|
|
164
|
+
constructor(t) {
|
|
165
|
+
this.resolvedInheritance = /* @__PURE__ */ Object.create(null), this.noInheritMembers = {}, this.options = t, t.environment === "production" ? (this.normalizedDocumentationHost = O, this.alternativeDocumentationHost = F) : (this.normalizedDocumentationHost = F, this.alternativeDocumentationHost = O);
|
|
59
166
|
}
|
|
60
167
|
/** Given an array of TypeScript source files, generate an api.json file */
|
|
61
|
-
extract(
|
|
168
|
+
extract(t) {
|
|
62
169
|
return {
|
|
63
170
|
timestamp: (/* @__PURE__ */ new Date()).toISOString().split(".")[0],
|
|
64
171
|
compiler: {
|
|
65
|
-
name:
|
|
66
|
-
version:
|
|
67
|
-
typescriptVersion:
|
|
172
|
+
name: P.name,
|
|
173
|
+
version: P.version,
|
|
174
|
+
typescriptVersion: d.version
|
|
68
175
|
},
|
|
69
|
-
|
|
70
|
-
|
|
176
|
+
// https://github.com/webcomponents/custom-elements-manifest?tab=readme-ov-file#schema-versioning
|
|
177
|
+
// https://github.com/webcomponents/custom-elements-manifest/releases
|
|
178
|
+
schemaVersion: "2.1.0",
|
|
179
|
+
modules: this.extractModules(t)
|
|
71
180
|
};
|
|
72
181
|
}
|
|
73
|
-
extractModules(
|
|
74
|
-
const
|
|
75
|
-
for (
|
|
76
|
-
|
|
77
|
-
|
|
182
|
+
extractModules(t) {
|
|
183
|
+
const n = [];
|
|
184
|
+
for (let o = 0; o < t.length; o++) {
|
|
185
|
+
const r = t[o];
|
|
186
|
+
this.file = r, n.push(this.extractModule(r));
|
|
187
|
+
}
|
|
188
|
+
return this.options.sortModules && n.sort(ne), n;
|
|
78
189
|
}
|
|
79
|
-
|
|
80
|
-
|
|
190
|
+
/**
|
|
191
|
+
* @param module
|
|
192
|
+
* @param sourcePath cwd-relative path to the source file (esri/core/Accessor.ts)
|
|
193
|
+
* @param importPath public import path of the module without package name or file extension (core/Accessor)
|
|
194
|
+
*/
|
|
195
|
+
extractModule(t, n = q.relative(this.options.cwd, t.fileName), o = ie(n)) {
|
|
196
|
+
const r = {
|
|
81
197
|
kind: "javascript-module",
|
|
82
|
-
path:
|
|
83
|
-
|
|
84
|
-
|
|
198
|
+
path: o,
|
|
199
|
+
sourcePath: n,
|
|
200
|
+
declarations: [],
|
|
201
|
+
exports: []
|
|
85
202
|
};
|
|
86
|
-
this.apiModule =
|
|
87
|
-
const n = this.extractDeclarations(e);
|
|
88
|
-
if (s.declarations = n, this.options.isFullApiExtraction) {
|
|
89
|
-
const o = this.inferExports(n);
|
|
90
|
-
o.length > 0 && (s.exports = o);
|
|
91
|
-
}
|
|
92
|
-
return s;
|
|
203
|
+
return this.apiModule = r, this.extractDeclarations(t), r.exports.length === 0 && (r.exports = void 0), r;
|
|
93
204
|
}
|
|
94
205
|
/**
|
|
95
206
|
* For a given module, extract all public declarations.
|
|
96
207
|
*/
|
|
97
|
-
extractDeclarations(
|
|
98
|
-
const
|
|
99
|
-
for (
|
|
100
|
-
const o = this.extractDeclaration(
|
|
101
|
-
|
|
208
|
+
extractDeclarations(t) {
|
|
209
|
+
const n = this.apiModule.declarations, o = t.statements;
|
|
210
|
+
for (let r = 0; r < o.length; r++) {
|
|
211
|
+
const a = o[r], i = this.extractDeclaration(a, r);
|
|
212
|
+
i !== void 0 && n.push(i);
|
|
102
213
|
}
|
|
103
|
-
return s;
|
|
104
214
|
}
|
|
105
215
|
/**
|
|
106
|
-
*
|
|
216
|
+
* Add ApiModule.exports entry based on ApiDeclaration
|
|
217
|
+
*
|
|
218
|
+
* To reduce the size of the api.json, we only add exports entries for web
|
|
219
|
+
* components or default exports.
|
|
107
220
|
*/
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
221
|
+
addExport(t, n) {
|
|
222
|
+
this.apiModule.exports.push({
|
|
223
|
+
kind: "customElement" in t ? "custom-element-definition" : t.kind === "interface" || t.kind === "mixin" ? "ts" : "js",
|
|
224
|
+
name: n ? "default" : t.tagName ?? t.name,
|
|
225
|
+
declaration: {
|
|
226
|
+
name: t.name
|
|
227
|
+
}
|
|
228
|
+
});
|
|
115
229
|
}
|
|
116
|
-
copyDoc(
|
|
117
|
-
|
|
118
|
-
if (i === void 0 || i === -1)
|
|
230
|
+
copyDoc(t, n, o, r, a) {
|
|
231
|
+
if (o.docsTags === void 0 || n === void 0)
|
|
119
232
|
return;
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
const
|
|
125
|
-
|
|
233
|
+
let i = 0;
|
|
234
|
+
for (; o.docsTags[i].name !== "copyDoc"; )
|
|
235
|
+
if (i += 1, i === o.docsTags.length)
|
|
236
|
+
return;
|
|
237
|
+
const s = o.name;
|
|
238
|
+
let c = n?.[s];
|
|
239
|
+
c === void 0 && g(
|
|
240
|
+
"@copyDoc tag was used, but failed to find copyDoc definition for it. Documentation: https://webgis.esri.com/webgis/core/core/documenting-api#copydoc",
|
|
241
|
+
{
|
|
242
|
+
file: this.file,
|
|
243
|
+
node: t
|
|
244
|
+
}
|
|
245
|
+
), !(typeof c == "function" && (c = c(o, r, a), c === void 0)) && R(
|
|
246
|
+
c,
|
|
247
|
+
o,
|
|
248
|
+
i
|
|
249
|
+
);
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Inherit public members from mixins and superclass.
|
|
253
|
+
*
|
|
254
|
+
* In cast of Lumina, for this to work, the superclass needs to be in a file
|
|
255
|
+
* named like a component (src/components/name/name.tsx), even if it is not a
|
|
256
|
+
* standalone component. See
|
|
257
|
+
* https://devtopia.esri.com/WebGIS/arcgis-web-components/issues/3212
|
|
258
|
+
*/
|
|
259
|
+
inheritMembers(t, n, o) {
|
|
260
|
+
if (t in this.resolvedInheritance)
|
|
261
|
+
return;
|
|
262
|
+
this.resolvedInheritance[t] = void 0;
|
|
263
|
+
const a = n;
|
|
264
|
+
let i = n.mixins, s = a.superclass, c = s === void 0 ? void 0 : this.maybeResolveMixinBaseClass(s, t);
|
|
265
|
+
if (c?.supertypes !== void 0) {
|
|
266
|
+
i = i === void 0 ? [] : [...i];
|
|
267
|
+
do {
|
|
268
|
+
const l = c.supertypes.length > 1, m = l ? 1 : 0;
|
|
269
|
+
for (let S = c.supertypes.length - 1; S >= m; S--) {
|
|
270
|
+
const E = c.supertypes[S], y = E.module === void 0 ? { ...E, module: s.module } : E;
|
|
271
|
+
i.unshift(y);
|
|
272
|
+
}
|
|
273
|
+
s = l ? c.supertypes[0] : void 0, c = s === void 0 ? void 0 : this.maybeResolveMixinBaseClass(s, t);
|
|
274
|
+
} while (c?.supertypes !== void 0);
|
|
275
|
+
}
|
|
276
|
+
if (i !== void 0)
|
|
277
|
+
for (let l = i.length - 1; l >= 0; l--) {
|
|
278
|
+
const S = i[l].module ?? t, E = this.resolvedInheritance[S] ?? this.resolveInheritance(S, o);
|
|
279
|
+
E !== !1 && this.inheritMembersFrom(E, n, t);
|
|
280
|
+
}
|
|
281
|
+
if (s?.package !== void 0)
|
|
126
282
|
return;
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
283
|
+
const p = s?.module, u = p === void 0 ? !1 : this.resolvedInheritance[p] ?? this.resolveInheritance(p, o);
|
|
284
|
+
if (u !== !1)
|
|
285
|
+
this.inheritMembersFrom(u, n, t), s.module = u.inheritanceData.module;
|
|
286
|
+
else if (n.mixins === void 0 && n.members !== void 0)
|
|
287
|
+
for (let l = 0; l < n.members.length; l++) {
|
|
288
|
+
const m = n.members[l];
|
|
289
|
+
if (m.name === "@eventTypes") {
|
|
290
|
+
this.handleEventTypesProperty(m, n, t), n.members.splice(l, 1), l -= 1;
|
|
291
|
+
break;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Inherit members from a superclass or mixin.
|
|
297
|
+
*/
|
|
298
|
+
inheritMembersFrom(t, n, o) {
|
|
299
|
+
const r = t.declaration, a = n;
|
|
300
|
+
let i = a.events !== void 0;
|
|
301
|
+
if (t.indexedMembers !== void 0) {
|
|
302
|
+
n.members ??= [];
|
|
303
|
+
const s = n.members, c = this.noInheritMembers[t.inheritanceData.module];
|
|
304
|
+
let p = c === void 0 ? void 0 : new Set(c);
|
|
305
|
+
for (let l = 0; l < s.length; l++) {
|
|
306
|
+
const m = s[l], S = b(m);
|
|
307
|
+
if (S === "@eventTypes") {
|
|
308
|
+
i = !0, this.handleEventTypesProperty(m, n, o), s.splice(l, 1), l -= 1;
|
|
309
|
+
continue;
|
|
310
|
+
}
|
|
311
|
+
const E = t.indexedMembers.get(S);
|
|
312
|
+
E === void 0 || (p ??= /* @__PURE__ */ new Set(), p.add(S), m.kind === "field" && this.maybePromotePropertyToAutoAccessor(m, E), E === void 0) || m.inheritedFrom === void 0 && R(E, m);
|
|
313
|
+
}
|
|
314
|
+
const u = r.members;
|
|
315
|
+
for (let l = 0; l < u.length; l++) {
|
|
316
|
+
const m = u[l];
|
|
317
|
+
// Most classes don't override any public members, so don't even check
|
|
318
|
+
// for this if no members were overridden.
|
|
319
|
+
(p?.has(b(m)) ?? !1) || n.members.push(
|
|
320
|
+
m.inheritedFrom === void 0 ? { ...m, inheritedFrom: t.inheritanceData } : m
|
|
321
|
+
);
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
!i && t.indexedEvents !== void 0 && (a.events = this.inheritMembersOfKind(
|
|
325
|
+
a.events,
|
|
326
|
+
r.events,
|
|
327
|
+
t.indexedEvents,
|
|
328
|
+
t.inheritanceData
|
|
329
|
+
)), t.indexedAttributes !== void 0 && (a.attributes = this.inheritMembersOfKind(
|
|
330
|
+
a.attributes,
|
|
331
|
+
r.attributes,
|
|
332
|
+
t.indexedAttributes,
|
|
333
|
+
t.inheritanceData
|
|
334
|
+
)), t.indexedSlots !== void 0 && (a.slots = this.inheritMembersOfKind(
|
|
335
|
+
a.slots,
|
|
336
|
+
r.slots,
|
|
337
|
+
t.indexedSlots
|
|
338
|
+
)), t.indexedCssParts !== void 0 && (a.cssParts = this.inheritMembersOfKind(
|
|
339
|
+
a.cssParts,
|
|
340
|
+
r.cssParts,
|
|
341
|
+
t.indexedCssParts
|
|
342
|
+
)), t.indexedCssProperties !== void 0 && (a.cssProperties = this.inheritMembersOfKind(
|
|
343
|
+
a.cssProperties,
|
|
344
|
+
r.cssProperties,
|
|
345
|
+
t.indexedCssProperties
|
|
346
|
+
)), t.indexedCssStates !== void 0 && (a.cssStates = this.inheritMembersOfKind(
|
|
347
|
+
a.cssStates,
|
|
348
|
+
r.cssStates,
|
|
349
|
+
t.indexedCssStates
|
|
350
|
+
));
|
|
351
|
+
}
|
|
352
|
+
inheritMembersOfKind(t = [], n, o, r) {
|
|
353
|
+
const a = /* @__PURE__ */ new Set();
|
|
354
|
+
for (let i = 0; i < t.length; i++) {
|
|
355
|
+
const s = t[i], c = o[s.name];
|
|
356
|
+
c !== void 0 && (a.add(s.name), c.inheritedFrom === void 0 && R(c, s));
|
|
357
|
+
}
|
|
358
|
+
for (let i = 0; i < n.length; i++) {
|
|
359
|
+
const s = n[i];
|
|
360
|
+
a.has(s.name) || t.push(
|
|
361
|
+
r === void 0 || s.inheritedFrom !== void 0 ? s : { ...s, inheritedFrom: r }
|
|
362
|
+
);
|
|
363
|
+
}
|
|
364
|
+
return t;
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* Based on the superclass name, find the actual declaration in the modules.
|
|
368
|
+
*/
|
|
369
|
+
resolveInheritance(t, n) {
|
|
370
|
+
const o = this.findSuperclassDeclaration(t, n);
|
|
371
|
+
if (o === !1)
|
|
372
|
+
return this.resolvedInheritance[t] = !1, !1;
|
|
373
|
+
const [r, a] = o, i = a;
|
|
374
|
+
this.inheritMembers(t, a, n);
|
|
375
|
+
let s, c = !1;
|
|
376
|
+
if (a.members !== void 0) {
|
|
377
|
+
s = /* @__PURE__ */ new Map();
|
|
378
|
+
for (let u = 0; u < a.members.length; u++) {
|
|
379
|
+
const l = a.members[u], m = b(l), E = s.get(m) !== void 0;
|
|
380
|
+
s.set(m, E ? void 0 : l), c ||= l.kind === "field" && l.readonly === void 0;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
const p = {
|
|
384
|
+
inheritanceData: {
|
|
385
|
+
name: a.name,
|
|
386
|
+
module: r
|
|
387
|
+
},
|
|
388
|
+
declaration: a,
|
|
389
|
+
hasSettableField: c,
|
|
390
|
+
indexedMembers: s,
|
|
391
|
+
indexedEvents: C(a.events),
|
|
392
|
+
indexedAttributes: C(i.attributes),
|
|
393
|
+
indexedSlots: C(i.slots),
|
|
394
|
+
indexedCssParts: C(i.cssParts),
|
|
395
|
+
indexedCssProperties: C(i.cssProperties),
|
|
396
|
+
indexedCssStates: C(i.cssStates)
|
|
397
|
+
};
|
|
398
|
+
return this.resolvedInheritance[t] = p, p;
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* Overwrite point
|
|
402
|
+
*
|
|
403
|
+
* FINAL: jsapi-extractor has a more efficient implementation because it
|
|
404
|
+
* has to deal with inheritance a lot. Unify it with Lumina.
|
|
405
|
+
*/
|
|
406
|
+
findSuperclassDeclaration(t, n) {
|
|
407
|
+
for (let o = 0; o < n.length; o++) {
|
|
408
|
+
const r = n[o];
|
|
409
|
+
if (r.path !== t)
|
|
410
|
+
continue;
|
|
411
|
+
const a = r.declarations;
|
|
412
|
+
for (let i = 0; i < a.length; i++) {
|
|
413
|
+
const s = a[i];
|
|
414
|
+
if (s.kind === "class")
|
|
415
|
+
return [r.path, s];
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
return !1;
|
|
419
|
+
}
|
|
420
|
+
handleEventTypesProperty(t, n, o) {
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* This method should check if the super property is an accessor, then the
|
|
424
|
+
* override property should be promoted to an accessor too.
|
|
425
|
+
* This is necessary until we migrate to standard decorators since - after
|
|
426
|
+
* that internal accessor status will match the status in the public typings.
|
|
427
|
+
*/
|
|
428
|
+
maybePromotePropertyToAutoAccessor(t, n) {
|
|
429
|
+
}
|
|
430
|
+
maybeResolveMixinBaseClass(t, n) {
|
|
134
431
|
}
|
|
135
432
|
}
|
|
136
|
-
|
|
137
|
-
(e
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
const
|
|
142
|
-
|
|
433
|
+
function C(e) {
|
|
434
|
+
if (e === void 0)
|
|
435
|
+
return;
|
|
436
|
+
const t = /* @__PURE__ */ Object.create(null);
|
|
437
|
+
for (let n = 0; n < e.length; n++) {
|
|
438
|
+
const o = e[n];
|
|
439
|
+
t[o.name] = o;
|
|
143
440
|
}
|
|
441
|
+
return t;
|
|
144
442
|
}
|
|
145
|
-
const
|
|
146
|
-
|
|
147
|
-
|
|
443
|
+
const v = d, se = v, k = 5, V = 1, _ = 1, W = 3, w = 4;
|
|
444
|
+
le(v.createSourceMapGenerator);
|
|
445
|
+
ce(v.createTextWriter);
|
|
446
|
+
de(v.getNewLineCharacter);
|
|
447
|
+
function le(e) {
|
|
448
|
+
if (typeof e != "function")
|
|
449
|
+
throw Error(
|
|
450
|
+
"Failed to find ts.createSourceMapGenerator() function. Lumina needs to be updated to support the new TypeScript version"
|
|
451
|
+
);
|
|
452
|
+
if (e.length !== k)
|
|
453
|
+
throw Error(
|
|
454
|
+
`ts.createSourceMapGenerator() signature changed. Expected ${k} arguments. Lumina needs to be updated to support the new TypeScript version`
|
|
455
|
+
);
|
|
148
456
|
}
|
|
149
|
-
function
|
|
150
|
-
if (
|
|
151
|
-
|
|
457
|
+
function ce(e) {
|
|
458
|
+
if (typeof e != "function")
|
|
459
|
+
throw Error(
|
|
460
|
+
"Failed to find ts.createTextWriter() function. Lumina needs to be updated to support the new TypeScript version"
|
|
461
|
+
);
|
|
462
|
+
if (e.length !== V)
|
|
463
|
+
throw Error(
|
|
464
|
+
`ts.createTextWriter() signature changed. Expected ${V} arguments. Lumina needs to be updated to support the new TypeScript version`
|
|
465
|
+
);
|
|
152
466
|
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
)
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
const r = o.text.indexOf(b);
|
|
163
|
-
r !== -1 && (n += o.text.slice(r), o.text = o.text?.slice(0, r));
|
|
164
|
-
}
|
|
165
|
-
return {
|
|
166
|
-
docsTags: s,
|
|
167
|
-
description: n || void 0
|
|
168
|
-
};
|
|
467
|
+
function de(e) {
|
|
468
|
+
if (typeof e != "function")
|
|
469
|
+
throw Error(
|
|
470
|
+
"Failed to find ts.getNewLineCharacter() function. Lumina needs to be updated to support the new TypeScript version"
|
|
471
|
+
);
|
|
472
|
+
if (e.length !== _)
|
|
473
|
+
throw Error(
|
|
474
|
+
`ts.getNewLineCharacter() signature changed. Expected ${_} argument. Lumina needs to be updated to support the new TypeScript version`
|
|
475
|
+
);
|
|
169
476
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
477
|
+
function me(e) {
|
|
478
|
+
if (typeof e != "function")
|
|
479
|
+
throw Error(
|
|
480
|
+
"Failed to find ts.Printer.writeFile() function. Lumina needs to be updated to support the new TypeScript version"
|
|
481
|
+
);
|
|
482
|
+
if (e.length !== W)
|
|
483
|
+
throw Error(
|
|
484
|
+
`ts.Printer.writeFile() signature changed. Expected ${W} arguments. Lumina needs to be updated to support the new TypeScript version`
|
|
485
|
+
);
|
|
486
|
+
}
|
|
487
|
+
function pe(e) {
|
|
488
|
+
if (typeof e != "function")
|
|
489
|
+
throw Error(
|
|
490
|
+
"Failed to find ts.Printer.writeNode() function. Lumina needs to be updated to support the new TypeScript version"
|
|
491
|
+
);
|
|
492
|
+
if (e.length !== w)
|
|
493
|
+
throw Error(
|
|
494
|
+
`ts.Printer.writeNode() signature changed. Expected ${w} arguments. Lumina needs to be updated to support the new TypeScript version`
|
|
495
|
+
);
|
|
496
|
+
}
|
|
497
|
+
function Ue(e, t) {
|
|
498
|
+
const n = se.createPrinter(e, t);
|
|
499
|
+
return me(n.writeFile), pe(n.writeNode), n;
|
|
500
|
+
}
|
|
501
|
+
function $e(e) {
|
|
502
|
+
const t = [], n = e, o = e;
|
|
503
|
+
if (e.deprecated && t.push({
|
|
179
504
|
name: "deprecated",
|
|
180
|
-
text:
|
|
181
|
-
}),
|
|
505
|
+
text: e.deprecated === !0 ? void 0 : e.deprecated
|
|
506
|
+
}), n.default && t.push({
|
|
182
507
|
name: "default",
|
|
183
|
-
text:
|
|
184
|
-
}),
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
508
|
+
text: n.default
|
|
509
|
+
}), o.return) {
|
|
510
|
+
const a = o.parameters;
|
|
511
|
+
if (a !== void 0)
|
|
512
|
+
for (let i = 0; i < a.length; i++) {
|
|
513
|
+
const s = a[i];
|
|
514
|
+
t.push({
|
|
515
|
+
name: "param",
|
|
516
|
+
text: `${s.name}${s.description ? ` - ${s.description}` : ""}`
|
|
517
|
+
});
|
|
518
|
+
}
|
|
519
|
+
o.return?.description && t.push({
|
|
520
|
+
name: "returns",
|
|
521
|
+
text: o.return.description
|
|
522
|
+
});
|
|
523
|
+
}
|
|
524
|
+
if ("customElement" in e) {
|
|
525
|
+
if (e.cssParts)
|
|
526
|
+
for (const a of e.cssParts)
|
|
527
|
+
t.push({
|
|
528
|
+
name: "csspart",
|
|
529
|
+
text: L(a)
|
|
530
|
+
});
|
|
531
|
+
if (e.cssStates)
|
|
532
|
+
for (const a of e.cssStates)
|
|
533
|
+
t.push({
|
|
534
|
+
name: "cssstate",
|
|
535
|
+
text: L(a)
|
|
536
|
+
});
|
|
537
|
+
if (e.slots)
|
|
538
|
+
for (const a of e.slots)
|
|
539
|
+
t.push({
|
|
540
|
+
name: "slot",
|
|
541
|
+
text: L(a)
|
|
542
|
+
});
|
|
543
|
+
}
|
|
544
|
+
n.privacy === "private" && t.push({
|
|
203
545
|
name: "private",
|
|
204
546
|
text: void 0
|
|
205
|
-
});
|
|
206
|
-
const
|
|
207
|
-
|
|
547
|
+
}), e.docsTags !== void 0 && t.push(...e.docsTags);
|
|
548
|
+
const r = e.description ?? "";
|
|
549
|
+
if (!(t.length === 0 && r.length === 0))
|
|
550
|
+
return {
|
|
551
|
+
description: r,
|
|
552
|
+
docsTags: t
|
|
553
|
+
};
|
|
554
|
+
}
|
|
555
|
+
function L(e) {
|
|
556
|
+
const t = e.name + (e.default !== void 0 ? `=${e.default}` : ""), n = t.length > 0 ? `[${t}]` : "", o = e.description ?? "", r = o.length > 0 ? ` - ${o}` : "";
|
|
557
|
+
return `${n}${r}`;
|
|
208
558
|
}
|
|
209
|
-
function
|
|
559
|
+
function ze(e) {
|
|
560
|
+
return e === void 0 ? [] : [
|
|
561
|
+
{
|
|
562
|
+
kind: d.SyntaxKind.MultiLineCommentTrivia,
|
|
563
|
+
pos: -1,
|
|
564
|
+
end: -1,
|
|
565
|
+
text: ue(e),
|
|
566
|
+
hasTrailingNewLine: !0
|
|
567
|
+
}
|
|
568
|
+
];
|
|
569
|
+
}
|
|
570
|
+
function ue(e) {
|
|
571
|
+
const t = e.description ?? "", n = t.length === 0, o = e.docsTags, r = (
|
|
572
|
+
// Has 2+ tags, or multi-line description, or single tag and single line description
|
|
573
|
+
o.length + (n ? 0 : t.includes(`
|
|
574
|
+
`) ? 2 : 1) > 1 || // Has a single tag, but that tag is multi-line
|
|
575
|
+
o[0]?.text?.includes(`
|
|
576
|
+
`) === !0
|
|
577
|
+
);
|
|
578
|
+
let a = "*";
|
|
579
|
+
n ? r || (a += " ") : (r ? (a += `
|
|
580
|
+
* `, a += H(t)) : a += ` ${t.replaceAll(" @", " \\@")}`, o.length > 0 && (a += `
|
|
581
|
+
*`));
|
|
582
|
+
for (let i = 0; i < o.length; i++) {
|
|
583
|
+
const s = o[i], c = `@${s.name}`, p = s.text ?? "";
|
|
584
|
+
a += `${r ? `
|
|
585
|
+
* ` : ""}${c}`, p.includes(`
|
|
586
|
+
`) ? (s.name === "returns" || s.name === "param" ? a += " " : a += `
|
|
587
|
+
* `, a += H(p)) : p.length > 0 && (a += ` ${p.replaceAll(" @", " \\@")}`);
|
|
588
|
+
}
|
|
589
|
+
return a += r ? `
|
|
590
|
+
` : " ", a;
|
|
591
|
+
}
|
|
592
|
+
function H(e) {
|
|
593
|
+
let t = "";
|
|
594
|
+
for (let n = 0; n < e.length; n++) {
|
|
595
|
+
const o = e[n];
|
|
596
|
+
o === `
|
|
597
|
+
` ? e[n + 1] === `
|
|
598
|
+
` ? t += `
|
|
599
|
+
*` : t += `
|
|
600
|
+
* ` : o === "@" && (e[n - 1] === " " || e[n - 1] === `
|
|
601
|
+
` || n === 0) ? t += "\\@" : t += o;
|
|
602
|
+
}
|
|
603
|
+
return t;
|
|
604
|
+
}
|
|
605
|
+
function qe(e, t, n = !0) {
|
|
606
|
+
const o = d.getLeadingCommentRanges(t.text, e.pos);
|
|
607
|
+
if (o === void 0)
|
|
608
|
+
return;
|
|
609
|
+
let r;
|
|
610
|
+
for (const a of o) {
|
|
611
|
+
const i = t.text.slice(a.pos, a.end);
|
|
612
|
+
i.startsWith("/**") && (r !== void 0 && g(
|
|
613
|
+
`Found multiple JSDoc comments for the same node. This is not allowed.
|
|
614
|
+
If one of these was meant to be a file-level comment, read the documentation: https://webgis.esri.com/webgis/core/core/documenting-api#file-documentation
|
|
615
|
+
If this is meant to be a function overload, read the documentation: https://webgis.esri.com/webgis/core/core/documenting-api#function-overloads`,
|
|
616
|
+
{
|
|
617
|
+
file: t,
|
|
618
|
+
node: e
|
|
619
|
+
}
|
|
620
|
+
), r = i);
|
|
621
|
+
}
|
|
622
|
+
if (r !== void 0 && !(n && !r.includes("* @public")))
|
|
623
|
+
return Se(r, t, n);
|
|
624
|
+
}
|
|
625
|
+
function Se(e, t, n = !1) {
|
|
626
|
+
const o = e.length - 2;
|
|
627
|
+
let r = 3, a = "";
|
|
628
|
+
const i = [];
|
|
629
|
+
let s, c = !n, p = !1;
|
|
630
|
+
for (; r < o; ) {
|
|
631
|
+
let u = e.indexOf(`
|
|
632
|
+
`, r);
|
|
633
|
+
u === -1 && (u = o);
|
|
634
|
+
let l = e.slice(r, u).trim();
|
|
635
|
+
if (r = u + 1, l === "*" ? l = "" : l.startsWith("*") && (l[1] === " " ? l = l.slice(2) : g(
|
|
636
|
+
`For consistency, include a space character after '*' in JSDoc. Did not find it in "${e}"`,
|
|
637
|
+
{
|
|
638
|
+
file: t,
|
|
639
|
+
node: void 0
|
|
640
|
+
}
|
|
641
|
+
)), l.startsWith("@")) {
|
|
642
|
+
s !== void 0 && !p && i.push({
|
|
643
|
+
name: s.name,
|
|
644
|
+
text: s.text.trim().replaceAll("\\@", "@") || void 0
|
|
645
|
+
});
|
|
646
|
+
const m = l.indexOf(" "), S = m === -1 ? l.slice(1) : l.slice(1, m), E = n && S === "public";
|
|
647
|
+
c ||= E, p = E || S === "privateRemarks";
|
|
648
|
+
const y = m === -1 ? "" : l.slice(m + 1);
|
|
649
|
+
s = {
|
|
650
|
+
name: S,
|
|
651
|
+
text: y
|
|
652
|
+
};
|
|
653
|
+
} else s !== void 0 ? s.text = `${s.text}
|
|
654
|
+
${l}` : a += `${l}
|
|
655
|
+
`;
|
|
656
|
+
}
|
|
657
|
+
if (c)
|
|
658
|
+
return s !== void 0 && !p && i.push({
|
|
659
|
+
name: s.name,
|
|
660
|
+
text: s.text.trim().replaceAll("\\@", "@") || void 0
|
|
661
|
+
}), {
|
|
662
|
+
description: a.trim().replaceAll("\\@", "@") || void 0,
|
|
663
|
+
docsTags: i
|
|
664
|
+
};
|
|
665
|
+
}
|
|
666
|
+
function Ee(e, t) {
|
|
667
|
+
const n = ge(t.getJsDocTags());
|
|
668
|
+
let o = d.displayPartsToString(t.getDocumentationComment(e));
|
|
669
|
+
const r = n.at(-1), a = r?.text?.indexOf(fe);
|
|
670
|
+
if (a !== void 0 && a !== -1) {
|
|
671
|
+
const i = r.text.indexOf(Ce);
|
|
672
|
+
i !== -1 && (o += r.text.slice(i), r.text = r.text?.slice(0, i));
|
|
673
|
+
}
|
|
210
674
|
return {
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
end: -1,
|
|
214
|
-
text: R(t, e),
|
|
215
|
-
hasTrailingNewLine: !0
|
|
675
|
+
description: o || void 0,
|
|
676
|
+
docsTags: n
|
|
216
677
|
};
|
|
217
678
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
return
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
234
|
-
function st(t, e, s, n) {
|
|
235
|
-
const o = e.getSymbolAtLocation(t);
|
|
236
|
-
if (n ??= o === void 0 ? void 0 : P(e, o), n !== void 0) {
|
|
237
|
-
for (const i of n.docsTags) {
|
|
238
|
-
const { name: r, text: a } = i;
|
|
239
|
-
r === "deprecated" ? s.deprecated = a || !0 : r === "default" ? s.default = a : r === "readonly" ? s.readonly = !0 : r === "private" ? s.privacy = "private" : r === "csspart" ? s.cssParts.push(p(a)) : r === "cssstate" ? s.cssStates.push(p(a)) : r === "slot" ? s.slots.push(p(a)) : (s.docsTags ??= [], s.docsTags.push(i));
|
|
240
|
-
}
|
|
241
|
-
s.description = n.description;
|
|
679
|
+
const Ce = `
|
|
680
|
+
|
|
681
|
+
{@link `, fe = "Read more...}", ge = (e) => e.filter((t) => t.name !== "privateRemarks").map((t) => ({
|
|
682
|
+
name: t.name,
|
|
683
|
+
text: t.text?.map((n) => n.text).join("")
|
|
684
|
+
}));
|
|
685
|
+
function Je(e, t, n) {
|
|
686
|
+
const o = t.getSymbolAtLocation(e), r = o === void 0 ? void 0 : Ee(t, o);
|
|
687
|
+
if (r !== void 0)
|
|
688
|
+
return ye(n, r);
|
|
689
|
+
}
|
|
690
|
+
function ye(e, t) {
|
|
691
|
+
for (const n of t.docsTags) {
|
|
692
|
+
const { name: o, text: r } = n;
|
|
693
|
+
o === "deprecated" ? e.deprecated = r || !0 : o === "default" ? e.default = r : o === "readonly" ? e.readonly = !0 : o === "private" ? e.privacy = "private" : o === "csspart" ? e.cssParts.push(I(r)) : o === "cssstate" ? e.cssStates.push(I(r)) : o === "slot" ? e.slots.push(I(r)) : (e.docsTags ??= [], e.docsTags.push(n));
|
|
242
694
|
}
|
|
695
|
+
e.description = t.description;
|
|
243
696
|
}
|
|
244
|
-
function
|
|
245
|
-
if (
|
|
697
|
+
function I(e) {
|
|
698
|
+
if (e === void 0)
|
|
246
699
|
return { name: "" };
|
|
247
|
-
const
|
|
248
|
-
if (
|
|
249
|
-
return
|
|
250
|
-
let
|
|
251
|
-
if (
|
|
252
|
-
const
|
|
253
|
-
|
|
254
|
-
}
|
|
255
|
-
const
|
|
700
|
+
const t = e.indexOf(" - ");
|
|
701
|
+
if (t === -1)
|
|
702
|
+
return e.startsWith("- ") ? { name: "", description: e.slice(2) } : { name: e };
|
|
703
|
+
let n, o = e.slice(0, t);
|
|
704
|
+
if (o.startsWith("[") && o.endsWith("]")) {
|
|
705
|
+
const a = o.slice(1, -1), i = a.indexOf("=");
|
|
706
|
+
o = a.slice(0, i), n = a.slice(i + 1);
|
|
707
|
+
}
|
|
708
|
+
const r = e.slice(t + 3);
|
|
256
709
|
return {
|
|
257
|
-
name:
|
|
258
|
-
default:
|
|
259
|
-
description:
|
|
710
|
+
name: o,
|
|
711
|
+
default: n,
|
|
712
|
+
description: r
|
|
260
713
|
};
|
|
261
714
|
}
|
|
262
|
-
function u(t) {
|
|
263
|
-
|
|
264
|
-
|
|
715
|
+
const ve = /* @__PURE__ */ JSON.parse('{"AbortController":["AbortController"],"AbortSignal":["AbortSignal"],"AbortSignalEventMap":[],"AbstractRange":["AbstractRange"],"AbstractWorker":["error_event"],"AbstractWorkerEventMap":[],"ActiveXObject":[],"addEventListener":[],"AddEventListenerOptions":[],"AddressErrors":[],"AesCbcParams":[],"AesCtrParams":[],"AesDerivedKeyParams":[],"AesGcmParams":[],"AesKeyAlgorithm":[],"AesKeyGenParams":[],"AggregateError":[],"AggregateErrorConstructor":[],"alert":["Window/alert"],"Algorithm":[],"AlgorithmIdentifier":[],"AlignSetting":[],"AllowSharedBufferSource":[],"AlphaOption":[],"AnalyserNode":["AnalyserNode"],"AnalyserOptions":[],"ANGLE_instanced_arrays":["ANGLE_instanced_arrays"],"Animatable":["animate"],"Animation":["Animation"],"AnimationEffect":["AnimationEffect"],"AnimationEvent":["AnimationEvent"],"AnimationEventInit":[],"AnimationEventMap":[],"AnimationFrameProvider":["cancelAnimationFrame"],"AnimationPlaybackEvent":["AnimationPlaybackEvent"],"AnimationPlaybackEventInit":[],"AnimationPlayState":[],"AnimationReplaceState":[],"AnimationTimeline":["AnimationTimeline"],"AppendMode":[],"ARIAMixin":["ariaActiveDescendantElement"],"Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array"],"ArrayBuffer":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer"],"ArrayBufferConstructor":[],"ArrayBufferLike":[],"ArrayBufferTypes":[],"ArrayBufferView":[],"ArrayConstructor":[],"ArrayIterator":[],"ArrayLike":[],"AssignedNodesOptions":[],"AsyncDisposable":[],"AsyncDisposableStack":[],"AsyncDisposableStackConstructor":[],"AsyncGenerator":[],"AsyncGeneratorFunction":[],"AsyncGeneratorFunctionConstructor":[],"AsyncIterable":[],"AsyncIterableIterator":[],"AsyncIterator":[],"AsyncIteratorObject":[],"atob":["Window/atob"],"Atomics":[],"AttestationConveyancePreference":[],"Attr":["Attr"],"Audio":[],"AudioBuffer":["AudioBuffer"],"AudioBufferOptions":[],"AudioBufferSourceNode":["AudioBufferSourceNode"],"AudioBufferSourceOptions":[],"AudioConfiguration":[],"AudioContext":["AudioContext"],"AudioContextLatencyCategory":[],"AudioContextOptions":[],"AudioContextState":[],"AudioData":["AudioData"],"AudioDataCopyToOptions":[],"AudioDataInit":[],"AudioDataOutputCallback":[],"AudioDecoder":["AudioDecoder"],"AudioDecoderConfig":[],"AudioDecoderEventMap":[],"AudioDecoderInit":[],"AudioDecoderSupport":[],"AudioDestinationNode":["AudioDestinationNode"],"AudioEncoder":["AudioEncoder"],"AudioEncoderConfig":[],"AudioEncoderEventMap":[],"AudioEncoderInit":[],"AudioEncoderSupport":[],"AudioListener":["AudioListener"],"AudioNode":["AudioNode"],"AudioNodeOptions":[],"AudioParam":["setValueCurveAtTime"],"AudioParamMap":["AudioParamMap"],"AudioProcessingEvent":["AudioProcessingEvent"],"AudioProcessingEventInit":[],"AudioSampleFormat":[],"AudioScheduledSourceNode":["AudioScheduledSourceNode"],"AudioScheduledSourceNodeEventMap":[],"AudioTimestamp":[],"AudioWorklet":["AudioWorklet"],"AudioWorkletNode":["AudioWorkletNode"],"AudioWorkletNodeEventMap":[],"AudioWorkletNodeOptions":[],"AuthenticationExtensionsClientInputs":[],"AuthenticationExtensionsClientInputsJSON":[],"AuthenticationExtensionsClientOutputs":[],"AuthenticationExtensionsLargeBlobInputs":[],"AuthenticationExtensionsLargeBlobInputsJSON":[],"AuthenticationExtensionsLargeBlobOutputs":[],"AuthenticationExtensionsPRFInputs":[],"AuthenticationExtensionsPRFInputsJSON":[],"AuthenticationExtensionsPRFOutputs":[],"AuthenticationExtensionsPRFValues":[],"AuthenticationExtensionsPRFValuesJSON":[],"AuthenticatorAssertionResponse":["AuthenticatorAssertionResponse"],"AuthenticatorAttachment":[],"AuthenticatorAttestationResponse":["AuthenticatorAttestationResponse"],"AuthenticatorResponse":["AuthenticatorResponse"],"AuthenticatorSelectionCriteria":[],"AuthenticatorTransport":[],"AutoFill":[],"AutoFillAddressKind":[],"AutoFillBase":[],"AutoFillContactField":[],"AutoFillContactKind":[],"AutoFillCredentialField":[],"AutoFillField":[],"AutoFillNormalField":[],"AutoFillSection":[],"AutoKeyword":[],"AutomationRate":[],"AvcBitstreamFormat":[],"AvcEncoderConfig":[],"Awaited":["https://www.typescriptlang.org/docs/handbook/utility-types.html#awaitedtype"],"BarProp":["BarProp"],"Base64URLString":[],"BaseAudioContext":["createIIRFilter"],"BaseAudioContextEventMap":[],"BeforeUnloadEvent":["BeforeUnloadEvent"],"BigInt":[],"BigInt64Array":[],"BigInt64ArrayConstructor":[],"BigIntConstructor":[],"BigInteger":[],"BigIntToLocaleStringOptions":[],"BigUint64Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint64Array"],"BigUint64ArrayConstructor":[],"BinaryType":[],"BiquadFilterNode":["BiquadFilterNode"],"BiquadFilterOptions":[],"BiquadFilterType":[],"BitrateMode":[],"Blob":["Blob"],"BlobCallback":[],"BlobEvent":["BlobEvent"],"BlobEventInit":[],"BlobPart":[],"BlobPropertyBag":[],"blur":["Window/blur"],"Body":["body"],"BodyInit":[],"Boolean":[],"BooleanConstructor":[],"BroadcastChannel":["BroadcastChannel"],"BroadcastChannelEventMap":[],"btoa":["Window/btoa"],"BufferSource":[],"BuiltinIteratorReturn":[],"ByteLengthQueuingStrategy":["ByteLengthQueuingStrategy"],"Cache":["addAll"],"CacheQueryOptions":[],"caches":[],"CacheStorage":["CacheStorage"],"CallableFunction":[],"cancelAnimationFrame":["DedicatedWorkerGlobalScope/cancelAnimationFrame"],"cancelIdleCallback":["Window/cancelIdleCallback"],"CanPlayTypeResult":[],"CanvasCaptureMediaStreamTrack":["CanvasCaptureMediaStreamTrack"],"CanvasCompositing":["globalAlpha"],"CanvasDirection":[],"CanvasDrawImage":["drawImage"],"CanvasDrawPath":["beginPath"],"CanvasFillRule":[],"CanvasFillStrokeStyles":["fillStyle"],"CanvasFilters":["filter"],"CanvasFontKerning":[],"CanvasFontStretch":[],"CanvasFontVariantCaps":[],"CanvasGradient":["CanvasGradient"],"CanvasImageData":["createImageData"],"CanvasImageSmoothing":["imageSmoothingEnabled"],"CanvasImageSource":[],"CanvasLineCap":[],"CanvasLineJoin":[],"CanvasPath":["roundRect"],"CanvasPathDrawingStyles":["setLineDash"],"CanvasPattern":["CanvasPattern"],"CanvasRect":["clearRect"],"CanvasRenderingContext2D":["CanvasRenderingContext2D"],"CanvasRenderingContext2DSettings":[],"CanvasSettings":["getContextAttributes"],"CanvasShadowStyles":["shadowBlur"],"CanvasState":["isContextLost"],"CanvasText":["fillText"],"CanvasTextAlign":[],"CanvasTextBaseline":[],"CanvasTextDrawingStyles":["direction"],"CanvasTextRendering":[],"CanvasTransform":["getTransform"],"CanvasUserInterface":["drawFocusIfNeeded"],"Capitalize":["https://www.typescriptlang.org/docs/handbook/utility-types.html#intrinsic-string-manipulation-types"],"captureEvents":["Window/captureEvents"],"CaretPosition":["CaretPosition"],"CaretPositionFromPointOptions":[],"CDATASection":["CDATASection"],"ChannelCountMode":[],"ChannelInterpretation":[],"ChannelMergerNode":["ChannelMergerNode"],"ChannelMergerOptions":[],"ChannelSplitterNode":["ChannelSplitterNode"],"ChannelSplitterOptions":[],"CharacterData":["CharacterData"],"CheckVisibilityOptions":[],"ChildNode":["after"],"ClassAccessorDecoratorContext":[],"ClassAccessorDecoratorResult":[],"ClassAccessorDecoratorTarget":[],"ClassDecorator":[],"ClassDecoratorContext":[],"ClassFieldDecoratorContext":[],"ClassGetterDecoratorContext":[],"ClassMemberDecoratorContext":[],"ClassMethodDecoratorContext":[],"ClassSetterDecoratorContext":[],"clearInterval":["Window/clearInterval"],"clearTimeout":["Window/clearTimeout"],"Client":["Client"],"clientInformation":[],"ClientQueryOptions":[],"ClientRect":[],"Clients":["Clients"],"ClientTypes":[],"Clipboard":["Clipboard"],"ClipboardEvent":["ClipboardEvent"],"ClipboardEventInit":[],"ClipboardItem":["ClipboardItem"],"ClipboardItemData":[],"ClipboardItemOptions":[],"ClipboardItems":[],"close":["DedicatedWorkerGlobalScope/close"],"closed":[],"CloseEvent":["CloseEvent"],"CloseEventInit":[],"CodecState":[],"ColorGamut":[],"ColorSpaceConversion":[],"Comment":["Comment"],"CompositeOperation":[],"CompositeOperationOrAuto":[],"CompositionEvent":["CompositionEvent"],"CompositionEventInit":[],"CompressionFormat":[],"CompressionStream":["CompressionStream"],"ComputedEffectTiming":[],"ComputedKeyframe":[],"ConcatArray":[],"confirm":["Window/confirm"],"console":[],"Console":["console"],"ConstantSourceNode":["ConstantSourceNode"],"ConstantSourceOptions":[],"ConstrainBoolean":[],"ConstrainBooleanParameters":[],"ConstrainDOMString":[],"ConstrainDOMStringParameters":[],"ConstrainDouble":[],"ConstrainDoubleRange":[],"ConstrainULong":[],"ConstrainULongRange":[],"ConstructorParameters":["https://www.typescriptlang.org/docs/handbook/utility-types.html#constructorparameterstype"],"ContentVisibilityAutoStateChangeEvent":["ContentVisibilityAutoStateChangeEvent"],"ContentVisibilityAutoStateChangeEventInit":[],"ConvolverNode":["ConvolverNode"],"ConvolverOptions":[],"CookieChangeEvent":["CookieChangeEvent"],"CookieChangeEventInit":[],"CookieInit":[],"CookieList":[],"CookieListItem":[],"CookieSameSite":[],"cookieStore":[],"CookieStore":["CookieStore"],"CookieStoreDeleteOptions":[],"CookieStoreEventMap":[],"CookieStoreGetOptions":[],"CookieStoreManager":["subscribe"],"COSEAlgorithmIdentifier":[],"CountQueuingStrategy":["CountQueuingStrategy"],"createImageBitmap":["Window/createImageBitmap"],"Credential":["Credential"],"CredentialCreationOptions":[],"CredentialMediationRequirement":[],"CredentialPropertiesOutput":[],"CredentialRequestOptions":[],"CredentialsContainer":["CredentialsContainer"],"crossOriginIsolated":[],"crypto":[],"Crypto":["Crypto"],"CryptoKey":["CryptoKey"],"CryptoKeyPair":[],"CSPViolationReportBody":["CSPViolationReportBody"],"CSS":[null,{"cap":[],"ch":["CSS/factory_functions_static"],"cm":["CSS/factory_functions_static"],"cqb":["CSS/factory_functions_static"],"cqh":["CSS/factory_functions_static"],"cqi":["CSS/factory_functions_static"],"cqmax":["CSS/factory_functions_static"],"cqmin":["CSS/factory_functions_static"],"cqw":["CSS/factory_functions_static"],"deg":["CSS/factory_functions_static"],"dpcm":["CSS/factory_functions_static"],"dpi":["CSS/factory_functions_static"],"dppx":["CSS/factory_functions_static"],"dvb":["CSS/factory_functions_static"],"dvh":["CSS/factory_functions_static"],"dvi":["CSS/factory_functions_static"],"dvmax":["CSS/factory_functions_static"],"dvmin":["CSS/factory_functions_static"],"dvw":["CSS/factory_functions_static"],"em":["CSS/factory_functions_static"],"escape":["CSS/escape_static"],"ex":["CSS/factory_functions_static"],"fr":["CSS/factory_functions_static"],"grad":["CSS/factory_functions_static"],"highlights":[],"Hz":["CSS/factory_functions_static"],"ic":[],"kHz":["CSS/factory_functions_static"],"lh":[],"lvb":["CSS/factory_functions_static"],"lvh":["CSS/factory_functions_static"],"lvi":["CSS/factory_functions_static"],"lvmax":["CSS/factory_functions_static"],"lvmin":["CSS/factory_functions_static"],"lvw":["CSS/factory_functions_static"],"mm":["CSS/factory_functions_static"],"ms":["CSS/factory_functions_static"],"number":["CSS/factory_functions_static"],"pc":["CSS/factory_functions_static"],"percent":["CSS/factory_functions_static"],"pt":["CSS/factory_functions_static"],"px":["CSS/factory_functions_static"],"Q":["CSS/factory_functions_static"],"rad":["CSS/factory_functions_static"],"rcap":[],"rch":[],"registerProperty":["CSS/registerProperty_static"],"rem":["CSS/factory_functions_static"],"rex":[],"ric":[],"rlh":[],"s":["CSS/factory_functions_static"],"supports":["CSS/supports_static"],"svb":["CSS/factory_functions_static"],"svh":["CSS/factory_functions_static"],"svi":["CSS/factory_functions_static"],"svmax":["CSS/factory_functions_static"],"svmin":["CSS/factory_functions_static"],"svw":["CSS/factory_functions_static"],"turn":["CSS/factory_functions_static"],"vb":["CSS/factory_functions_static"],"vh":["CSS/factory_functions_static"],"vi":["CSS/factory_functions_static"],"vmax":["CSS/factory_functions_static"],"vmin":["CSS/factory_functions_static"],"vw":["CSS/factory_functions_static"]}],"CSSAnimation":["CSSAnimation"],"CSSConditionRule":["CSSConditionRule"],"CSSContainerRule":["CSSContainerRule"],"CSSCounterStyleRule":["CSSCounterStyleRule"],"CSSFontFaceRule":["CSSFontFaceRule"],"CSSFontFeatureValuesRule":["CSSFontFeatureValuesRule"],"CSSFontPaletteValuesRule":["CSSFontPaletteValuesRule"],"CSSGroupingRule":["CSSGroupingRule"],"CSSImageValue":["CSSImageValue"],"CSSImportRule":["CSSImportRule"],"CSSKeyframeRule":["CSSKeyframeRule"],"CSSKeyframesRule":["CSSKeyframesRule"],"CSSKeywordish":[],"CSSKeywordValue":["CSSKeywordValue"],"CSSLayerBlockRule":["CSSLayerBlockRule"],"CSSLayerStatementRule":["CSSLayerStatementRule"],"CSSMathClamp":[],"CSSMathInvert":["CSSMathInvert"],"CSSMathMax":["CSSMathMax"],"CSSMathMin":["CSSMathMin"],"CSSMathNegate":["CSSMathNegate"],"CSSMathOperator":[],"CSSMathProduct":["CSSMathProduct"],"CSSMathSum":["CSSMathSum"],"CSSMathValue":["CSSMathValue"],"CSSMatrixComponent":["CSSMatrixComponent"],"CSSMatrixComponentOptions":[],"CSSMediaRule":["CSSMediaRule"],"CSSNamespaceRule":["CSSNamespaceRule"],"CSSNestedDeclarations":["CSSNestedDeclarations"],"CSSNumberish":[],"CSSNumericArray":["CSSNumericArray"],"CSSNumericBaseType":[],"CSSNumericType":[],"CSSNumericValue":["CSSNumericValue"],"CSSPageRule":["CSSPageRule"],"CSSPerspective":["CSSPerspective"],"CSSPerspectiveValue":[],"CSSPropertyRule":["CSSPropertyRule"],"CSSRotate":["CSSRotate"],"CSSRule":["CSSRule"],"CSSRuleList":["CSSRuleList"],"CSSScale":["CSSScale"],"CSSScopeRule":["CSSScopeRule"],"CSSSkew":["CSSSkew"],"CSSSkewX":["CSSSkewX"],"CSSSkewY":["CSSSkewY"],"CSSStartingStyleRule":["CSSStartingStyleRule"],"CSSStyleDeclaration":["CSSStyleDeclaration"],"CSSStyleRule":["CSSStyleRule"],"CSSStyleSheet":["CSSStyleSheet"],"CSSStyleSheetInit":[],"CSSStyleValue":["CSSStyleValue"],"CSSSupportsRule":["CSSSupportsRule"],"CSSTransformComponent":["CSSTransformComponent"],"CSSTransformValue":["CSSTransformValue"],"CSSTransition":["CSSTransition"],"CSSTranslate":["CSSTranslate"],"CSSUnitValue":["CSSUnitValue"],"CSSUnparsedSegment":[],"CSSUnparsedValue":["CSSUnparsedValue"],"CSSVariableReferenceValue":["CSSVariableReferenceValue"],"CSSViewTransitionRule":[],"CustomElementConstructor":[],"CustomElementRegistry":["CustomElementRegistry"],"customElements":[],"CustomEvent":["CustomEvent"],"CustomEventInit":[],"CustomStateSet":["CustomStateSet"],"DataTransfer":["DataTransfer"],"DataTransferItem":["DataTransferItem"],"DataTransferItemList":["DataTransferItemList"],"DataView":[],"DataViewConstructor":[],"Date":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date"],"DateConstructor":[],"DecodeErrorCallback":[],"DecodeSuccessCallback":[],"decodeURI":[],"decodeURIComponent":[],"DecompressionStream":["DecompressionStream"],"DecoratorContext":[],"DecoratorMetadata":[],"DecoratorMetadataObject":[],"DedicatedWorkerGlobalScope":["DedicatedWorkerGlobalScope"],"DedicatedWorkerGlobalScopeEventMap":[],"DelayNode":["DelayNode"],"DelayOptions":[],"DeviceMotionEvent":["DeviceMotionEvent"],"DeviceMotionEventAcceleration":["DeviceMotionEventAcceleration"],"DeviceMotionEventAccelerationInit":[],"DeviceMotionEventInit":[],"DeviceMotionEventRotationRate":["DeviceMotionEventRotationRate"],"DeviceMotionEventRotationRateInit":[],"DeviceOrientationEvent":["DeviceOrientationEvent"],"DeviceOrientationEventInit":[],"devicePixelRatio":[],"DirectionSetting":[],"dispatchEvent":["EventTarget/dispatchEvent"],"DisplayCaptureSurfaceType":[],"DisplayMediaStreamOptions":[],"Disposable":[],"DisposableStack":[],"DisposableStackConstructor":[],"DistanceModelType":[],"document":[],"Document":["Document"],"DocumentEventMap":[],"DocumentFragment":["DocumentFragment"],"DocumentOrShadowRoot":["activeElement"],"DocumentReadyState":[],"DocumentTimeline":["DocumentTimeline"],"DocumentTimelineOptions":[],"DocumentType":["DocumentType"],"DocumentVisibilityState":[],"DOMException":["DOMException"],"DOMHighResTimeStamp":[],"DOMImplementation":["DOMImplementation"],"DOMMatrix":["DOMMatrix"],"DOMMatrix2DInit":[],"DOMMatrixInit":[],"DOMMatrixReadOnly":["DOMMatrixReadOnly"],"DOMParser":["DOMParser"],"DOMParserSupportedType":[],"DOMPoint":["DOMPoint"],"DOMPointInit":[],"DOMPointReadOnly":["DOMPointReadOnly"],"DOMQuad":["DOMQuad"],"DOMQuadInit":[],"DOMRect":["DOMRect"],"DOMRectInit":[],"DOMRectList":["DOMRectList"],"DOMRectReadOnly":["DOMRectReadOnly"],"DOMStringList":["DOMStringList"],"DOMStringMap":["DOMStringMap"],"DOMTokenList":["DOMTokenList"],"DoubleRange":[],"DragEvent":["DragEvent"],"DragEventInit":[],"DynamicsCompressorNode":["DynamicsCompressorNode"],"DynamicsCompressorOptions":[],"EcdhKeyDeriveParams":[],"EcdsaParams":[],"EcKeyAlgorithm":[],"EcKeyGenParams":[],"EcKeyImportParams":[],"EffectTiming":[],"Element":["Element"],"ElementContentEditable":["contentEditable"],"ElementCreationOptions":[],"ElementCSSInlineStyle":["attributeStyleMap"],"ElementDefinitionOptions":[],"ElementEventMap":[],"ElementInternals":["ElementInternals"],"ElementTagNameMap":[],"EncodedAudioChunk":["EncodedAudioChunk"],"EncodedAudioChunkInit":[],"EncodedAudioChunkMetadata":[],"EncodedAudioChunkOutputCallback":[],"EncodedAudioChunkType":[],"EncodedVideoChunk":["EncodedVideoChunk"],"EncodedVideoChunkInit":[],"EncodedVideoChunkMetadata":[],"EncodedVideoChunkOutputCallback":[],"EncodedVideoChunkType":[],"encodeURI":[],"encodeURIComponent":[],"EndingType":[],"EndOfStreamError":[],"Enumerator":[],"EnumeratorConstructor":[],"EpochTimeStamp":[],"Error":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error"],"ErrorCallback":[],"ErrorConstructor":[],"ErrorEvent":["ErrorEvent"],"ErrorEventInit":[],"ErrorOptions":[],"escape":[],"eval":[],"EvalError":[],"EvalErrorConstructor":[],"event":[],"Event":["Event"],"EventCounts":["EventCounts"],"EventInit":[],"EventListener":[],"EventListenerObject":[],"EventListenerOptions":[],"EventListenerOrEventListenerObject":[],"EventModifierInit":[],"EventSource":["EventSource"],"EventSourceEventMap":[],"EventSourceInit":[],"EventTarget":["EventTarget"],"Exclude":["https://www.typescriptlang.org/docs/handbook/utility-types.html#excludeuniontype-excludedmembers"],"EXT_blend_minmax":["EXT_blend_minmax"],"EXT_color_buffer_float":["EXT_color_buffer_float"],"EXT_color_buffer_half_float":["EXT_color_buffer_half_float"],"EXT_float_blend":["EXT_float_blend"],"EXT_frag_depth":["EXT_frag_depth"],"EXT_shader_texture_lod":["EXT_shader_texture_lod"],"EXT_sRGB":["EXT_sRGB"],"EXT_texture_compression_bptc":["EXT_texture_compression_bptc"],"EXT_texture_compression_rgtc":["EXT_texture_compression_rgtc"],"EXT_texture_filter_anisotropic":["EXT_texture_filter_anisotropic"],"EXT_texture_norm16":["EXT_texture_norm16"],"ExtendableCookieChangeEvent":["ExtendableCookieChangeEvent"],"ExtendableCookieChangeEventInit":[],"ExtendableEvent":["ExtendableEvent"],"ExtendableEventInit":[],"ExtendableMessageEvent":["ExtendableMessageEvent"],"ExtendableMessageEventInit":[],"external":[],"External":[],"Extract":["https://www.typescriptlang.org/docs/handbook/utility-types.html#extracttype-union"],"fetch":["Window/fetch"],"FetchEvent":["FetchEvent"],"FetchEventInit":[],"File":["File"],"FileCallback":[],"FileList":["FileList"],"FilePropertyBag":[],"FileReader":["FileReader"],"FileReaderEventMap":[],"FileReaderSync":["FileReaderSync"],"FileSystem":["FileSystem"],"FileSystemCreateWritableOptions":[],"FileSystemDirectoryEntry":["FileSystemDirectoryEntry"],"FileSystemDirectoryHandle":["FileSystemDirectoryHandle"],"FileSystemDirectoryHandleAsyncIterator":[],"FileSystemDirectoryReader":["FileSystemDirectoryReader"],"FileSystemEntriesCallback":[],"FileSystemEntry":["FileSystemEntry"],"FileSystemEntryCallback":[],"FileSystemFileEntry":["FileSystemFileEntry"],"FileSystemFileHandle":["FileSystemFileHandle"],"FileSystemFlags":[],"FileSystemGetDirectoryOptions":[],"FileSystemGetFileOptions":[],"FileSystemHandle":["FileSystemHandle"],"FileSystemHandleKind":[],"FileSystemReadWriteOptions":[],"FileSystemRemoveOptions":[],"FileSystemSyncAccessHandle":["FileSystemSyncAccessHandle"],"FileSystemWritableFileStream":["FileSystemWritableFileStream"],"FileSystemWriteChunkType":[],"FillLightMode":[],"FillMode":[],"FinalizationRegistry":[],"FinalizationRegistryConstructor":[],"FlatArray":[],"Float16Array":[],"Float16ArrayConstructor":[],"Float32Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Float32Array"],"Float32ArrayConstructor":[],"Float32List":[],"Float64Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Float64Array"],"Float64ArrayConstructor":[],"focus":["Window/focus"],"FocusEvent":["FocusEvent"],"FocusEventInit":[],"FocusOptions":[],"FontDisplay":[],"FontFace":["FontFace"],"FontFaceDescriptors":[],"FontFaceLoadStatus":[],"FontFaceSet":["FontFaceSet"],"FontFaceSetEventMap":[],"FontFaceSetLoadEvent":["FontFaceSetLoadEvent"],"FontFaceSetLoadEventInit":[],"FontFaceSetLoadStatus":[],"FontFaceSource":["fonts"],"fonts":[],"FormData":["FormData"],"FormDataEntryValue":[],"FormDataEvent":["FormDataEvent"],"FormDataEventInit":[],"FormDataIterator":[],"FragmentDirective":["FragmentDirective"],"frameElement":[],"FrameRequestCallback":[],"frames":[],"FrameType":[],"FullscreenNavigationUI":[],"FullscreenOptions":[],"Function":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function"],"FunctionConstructor":[],"FunctionStringCallback":[],"GainNode":["GainNode"],"GainOptions":[],"Gamepad":["Gamepad"],"GamepadButton":["GamepadButton"],"GamepadEffectParameters":[],"GamepadEvent":["GamepadEvent"],"GamepadEventInit":[],"GamepadHapticActuator":["GamepadHapticActuator"],"GamepadHapticEffectType":[],"GamepadHapticsResult":[],"GamepadMappingType":[],"Generator":[],"GeneratorFunction":[],"GeneratorFunctionConstructor":[],"GenericTransformStream":["readable"],"Geolocation":["Geolocation"],"GeolocationCoordinates":["GeolocationCoordinates"],"GeolocationPosition":["GeolocationPosition"],"GeolocationPositionError":["GeolocationPositionError"],"GetAnimationsOptions":[],"GetComposedRangesOptions":[],"getComputedStyle":["Window/getComputedStyle"],"GetHTMLOptions":[],"GetNotificationOptions":[],"GetRootNodeOptions":[],"getSelection":["Window/getSelection"],"GLbitfield":[],"GLboolean":[],"GLclampf":[],"GLenum":[],"GLfloat":[],"GLint":[],"GLint64":[],"GLintptr":[],"global":[],"GlobalCompositeOperation":[],"GlobalEventHandlers":["abort_event"],"GlobalEventHandlersEventMap":[],"GLsizei":[],"GLsizeiptr":[],"GLuint":[],"GLuint64":[],"GPUError":["GPUError"],"HardwareAcceleration":[],"HashAlgorithmIdentifier":[],"HashChangeEvent":["HashChangeEvent"],"HashChangeEventInit":[],"HdrMetadataType":[],"Headers":["Headers"],"HeadersInit":[],"HeadersIterator":[],"Highlight":["Highlight"],"HighlightRegistry":["HighlightRegistry"],"HighlightType":[],"history":[],"History":["History"],"HkdfParams":[],"HmacImportParams":[],"HmacKeyAlgorithm":[],"HmacKeyGenParams":[],"HTMLAllCollection":["HTMLAllCollection"],"HTMLAnchorElement":["HTMLAnchorElement"],"HTMLAreaElement":["HTMLAreaElement"],"HTMLAudioElement":["HTMLAudioElement"],"HTMLBaseElement":["HTMLBaseElement"],"HTMLBodyElement":["HTMLBodyElement"],"HTMLBodyElementEventMap":[],"HTMLBRElement":["HTMLBRElement"],"HTMLButtonElement":["HTMLButtonElement"],"HTMLCanvasElement":["HTMLCanvasElement"],"HTMLCollection":["namedItem"],"HTMLCollectionBase":["HTMLCollection"],"HTMLCollectionOf":[],"HTMLDataElement":["HTMLDataElement"],"HTMLDataListElement":["HTMLDataListElement"],"HTMLDetailsElement":["HTMLDetailsElement"],"HTMLDialogElement":["HTMLDialogElement"],"HTMLDirectoryElement":[],"HTMLDivElement":["HTMLDivElement"],"HTMLDListElement":["HTMLDListElement"],"HTMLDocument":[],"HTMLElement":["HTMLElement"],"HTMLElementDeprecatedTagNameMap":[],"HTMLElementEventMap":[],"HTMLElementTagNameMap":[],"HTMLEmbedElement":["HTMLEmbedElement"],"HTMLFieldSetElement":["HTMLFieldSetElement"],"HTMLFontElement":["HTMLFontElement"],"HTMLFormControlsCollection":["HTMLFormControlsCollection"],"HTMLFormElement":["HTMLFormElement"],"HTMLFrameElement":[],"HTMLFrameSetElement":["HTMLFrameSetElement"],"HTMLFrameSetElementEventMap":[],"HTMLHeadElement":["HTMLHeadElement"],"HTMLHeadingElement":["HTMLHeadingElement"],"HTMLHRElement":["HTMLHRElement"],"HTMLHtmlElement":["HTMLHtmlElement"],"HTMLHyperlinkElementUtils":["hash"],"HTMLIFrameElement":["HTMLIFrameElement"],"HTMLImageElement":["HTMLImageElement"],"HTMLInputElement":["HTMLInputElement"],"HTMLLabelElement":["HTMLLabelElement"],"HTMLLegendElement":["HTMLLegendElement"],"HTMLLIElement":["HTMLLIElement"],"HTMLLinkElement":["HTMLLinkElement"],"HTMLMapElement":["HTMLMapElement"],"HTMLMarqueeElement":["HTMLMarqueeElement"],"HTMLMediaElement":["HTMLMediaElement"],"HTMLMediaElementEventMap":[],"HTMLMenuElement":["HTMLMenuElement"],"HTMLMetaElement":["HTMLMetaElement"],"HTMLMeterElement":["HTMLMeterElement"],"HTMLModElement":["HTMLModElement"],"HTMLObjectElement":["HTMLObjectElement"],"HTMLOListElement":["HTMLOListElement"],"HTMLOptGroupElement":["HTMLOptGroupElement"],"HTMLOptionElement":["HTMLOptionElement"],"HTMLOptionsCollection":["HTMLOptionsCollection"],"HTMLOrSVGElement":["autofocus"],"HTMLOrSVGImageElement":[],"HTMLOrSVGScriptElement":[],"HTMLOutputElement":["HTMLOutputElement"],"HTMLParagraphElement":["HTMLParagraphElement"],"HTMLParamElement":["HTMLParamElement"],"HTMLPictureElement":["HTMLPictureElement"],"HTMLPreElement":["HTMLPreElement"],"HTMLProgressElement":["HTMLProgressElement"],"HTMLQuoteElement":["HTMLQuoteElement"],"HTMLScriptElement":["HTMLScriptElement"],"HTMLSelectElement":["HTMLSelectElement"],"HTMLSlotElement":["HTMLSlotElement"],"HTMLSourceElement":["HTMLSourceElement"],"HTMLSpanElement":["HTMLSpanElement"],"HTMLStyleElement":["HTMLStyleElement"],"HTMLTableCaptionElement":["HTMLTableCaptionElement"],"HTMLTableCellElement":["HTMLTableCellElement"],"HTMLTableColElement":["HTMLTableColElement"],"HTMLTableDataCellElement":[],"HTMLTableElement":["HTMLTableElement"],"HTMLTableHeaderCellElement":[],"HTMLTableRowElement":["HTMLTableRowElement"],"HTMLTableSectionElement":["HTMLTableSectionElement"],"HTMLTemplateElement":["HTMLTemplateElement"],"HTMLTextAreaElement":["HTMLTextAreaElement"],"HTMLTimeElement":["HTMLTimeElement"],"HTMLTitleElement":["HTMLTitleElement"],"HTMLTrackElement":["HTMLTrackElement"],"HTMLUListElement":["HTMLUListElement"],"HTMLUnknownElement":["HTMLUnknownElement"],"HTMLVideoElement":["HTMLVideoElement"],"HTMLVideoElementEventMap":[],"IArguments":[],"IDBCursor":["IDBCursor"],"IDBCursorDirection":[],"IDBCursorWithValue":["IDBCursorWithValue"],"IDBDatabase":["transaction"],"IDBDatabaseEventMap":[],"IDBDatabaseInfo":[],"IDBFactory":["IDBFactory"],"IDBIndex":["IDBIndex"],"IDBIndexParameters":[],"IDBKeyRange":["IDBKeyRange"],"IDBObjectStore":["createIndex"],"IDBObjectStoreParameters":[],"IDBOpenDBRequest":["IDBOpenDBRequest"],"IDBOpenDBRequestEventMap":[],"IDBRequest":["IDBRequest"],"IDBRequestEventMap":[],"IDBRequestReadyState":[],"IDBTransaction":["IDBTransaction"],"IDBTransactionDurability":[],"IDBTransactionEventMap":[],"IDBTransactionMode":[],"IDBTransactionOptions":[],"IDBValidKey":[],"IDBVersionChangeEvent":["IDBVersionChangeEvent"],"IDBVersionChangeEventInit":[],"IdleDeadline":["IdleDeadline"],"IdleRequestCallback":[],"IdleRequestOptions":[],"IIRFilterNode":["IIRFilterNode"],"IIRFilterOptions":[],"Image":[],"ImageBitmap":["ImageBitmap"],"ImageBitmapOptions":[],"ImageBitmapRenderingContext":["ImageBitmapRenderingContext"],"ImageBitmapRenderingContextSettings":[],"ImageBitmapSource":[],"ImageBufferSource":[],"ImageCapture":["ImageCapture"],"ImageData":["ImageData"],"ImageDataArray":[],"ImageDataSettings":[],"ImageDecodeOptions":[],"ImageDecoder":["ImageDecoder"],"ImageDecodeResult":[],"ImageDecoderInit":[],"ImageEncodeOptions":[],"ImageOrientation":[],"ImageSmoothingQuality":[],"ImageTrack":["ImageTrack"],"ImageTrackList":["ImageTrackList"],"ImportAssertions":[],"ImportAttributes":[],"ImportCallOptions":[],"ImportMeta":[],"ImportNodeOptions":[],"importScripts":["WorkerGlobalScope/importScripts"],"indexedDB":[],"Infinity":[],"innerHeight":[],"innerWidth":[],"InputDeviceInfo":["InputDeviceInfo"],"InputEvent":["InputEvent"],"InputEventInit":[],"InsertPosition":[],"InstanceType":["https://www.typescriptlang.org/docs/handbook/utility-types.html#instancetypetype"],"Int16Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int16Array"],"Int16ArrayConstructor":[],"Int32Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int32Array"],"Int32ArrayConstructor":[],"Int32List":[],"Int8Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int8Array"],"Int8ArrayConstructor":[],"IntersectionObserver":["IntersectionObserver"],"IntersectionObserverCallback":[],"IntersectionObserverEntry":["IntersectionObserverEntry"],"IntersectionObserverInit":[],"Intl":[null,{"Collator":[],"CollatorConstructor":[],"CollatorOptions":[],"DateTimeFormat":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat"],"DateTimeFormatConstructor":[],"DateTimeFormatOptions":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat"],"DateTimeFormatPart":[],"DateTimeFormatPartTypes":[],"DateTimeFormatPartTypesRegistry":[],"DateTimeRangeFormatPart":[],"DisplayNames":[],"DisplayNamesFallback":[],"DisplayNamesLanguageDisplay":[],"DisplayNamesOptions":[],"DisplayNamesType":[],"getCanonicalLocales":[],"LDMLPluralRule":[],"ListFormat":[],"ListFormatLocaleMatcher":[],"ListFormatOptions":[],"ListFormatStyle":[],"ListFormatType":[],"Locale":[],"LocaleCollationCaseFirst":[],"LocaleHourCycleKey":[],"LocaleOptions":[],"LocalesArgument":[],"NumberFormat":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat"],"NumberFormatConstructor":[],"NumberFormatOptions":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat"],"NumberFormatOptionsCurrencyDisplay":[],"NumberFormatOptionsCurrencyDisplayRegistry":[],"NumberFormatOptionsSignDisplay":[],"NumberFormatOptionsSignDisplayRegistry":[],"NumberFormatOptionsStyle":[],"NumberFormatOptionsStyleRegistry":[],"NumberFormatOptionsUseGrouping":[],"NumberFormatOptionsUseGroupingRegistry":[],"NumberFormatPart":[],"NumberFormatPartTypeRegistry":[],"NumberFormatPartTypes":[],"NumberRangeFormatPart":[],"PluralRules":[],"PluralRulesConstructor":[],"PluralRulesOptions":[],"PluralRuleType":[],"RelativeTimeFormat":[],"RelativeTimeFormatLocaleMatcher":[],"RelativeTimeFormatNumeric":[],"RelativeTimeFormatOptions":[],"RelativeTimeFormatPart":[],"RelativeTimeFormatStyle":[],"RelativeTimeFormatUnit":[],"RelativeTimeFormatUnitSingular":[],"ResolvedCollatorOptions":[],"ResolvedDateTimeFormatOptions":[],"ResolvedDisplayNamesOptions":[],"ResolvedListFormatOptions":[],"ResolvedNumberFormatOptions":[],"ResolvedNumberFormatOptionsUseGrouping":[],"ResolvedPluralRulesOptions":[],"ResolvedRelativeTimeFormatOptions":[],"ResolvedSegmenterOptions":[],"SegmentData":[],"Segmenter":[],"SegmenterOptions":[],"SegmentIterator":[],"Segments":[],"StringNumericLiteral":[],"supportedValuesOf":[],"UnicodeBCP47LocaleIdentifier":[]}],"isFinite":[],"isNaN":[],"isSecureContext":[],"Iterable":[],"IterableIterator":[],"IterationCompositeOperation":[],"Iterator":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Iterator"],"IteratorConstructor":[],"IteratorObject":[],"IteratorObjectConstructor":[],"IteratorResult":[],"IteratorReturnResult":[],"IteratorYieldResult":[],"ITextWriter":[],"JSON":[],"JsonWebKey":[],"KeyAlgorithm":[],"KeyboardEvent":["KeyboardEvent"],"KeyboardEventInit":[],"KeyFormat":[],"Keyframe":[],"KeyframeAnimationOptions":[],"KeyframeEffect":["KeyframeEffect"],"KeyframeEffectOptions":[],"KeySystemTrackConfiguration":[],"KeyType":[],"KeyUsage":[],"KHR_parallel_shader_compile":["KHR_parallel_shader_compile"],"LargestContentfulPaint":["LargestContentfulPaint"],"LatencyMode":[],"length":[],"LineAlignSetting":[],"LineAndPositionSetting":[],"LinkStyle":["sheet"],"localStorage":[],"location":[],"Location":["Location"],"locationbar":[],"Lock":["Lock"],"LockGrantedCallback":[],"LockInfo":[],"LockManager":["LockManager"],"LockManagerSnapshot":[],"LockMode":[],"LockOptions":[],"LoginStatus":[],"Lowercase":["https://www.typescriptlang.org/docs/handbook/utility-types.html#intrinsic-string-manipulation-types"],"Map":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Map"],"MapConstructor":[],"MapIterator":[],"matchMedia":["Window/matchMedia"],"Math":[],"MathMLElement":["MathMLElement"],"MathMLElementEventMap":[],"MathMLElementTagNameMap":[],"MediaCapabilities":["MediaCapabilities"],"MediaCapabilitiesDecodingInfo":[],"MediaCapabilitiesEncodingInfo":[],"MediaCapabilitiesInfo":[],"MediaCapabilitiesKeySystemConfiguration":[],"MediaConfiguration":[],"MediaDecodingConfiguration":[],"MediaDecodingType":[],"MediaDeviceInfo":["MediaDeviceInfo"],"MediaDeviceKind":[],"MediaDevices":["MediaDevices"],"MediaDevicesEventMap":[],"MediaElementAudioSourceNode":["MediaElementAudioSourceNode"],"MediaElementAudioSourceOptions":[],"MediaEncodingConfiguration":[],"MediaEncodingType":[],"MediaEncryptedEvent":["MediaEncryptedEvent"],"MediaEncryptedEventInit":[],"MediaError":["MediaError"],"MediaImage":[],"MediaKeyMessageEvent":["MediaKeyMessageEvent"],"MediaKeyMessageEventInit":[],"MediaKeyMessageType":[],"MediaKeys":["MediaKeys"],"MediaKeySession":["MediaKeySession"],"MediaKeySessionClosedReason":[],"MediaKeySessionEventMap":[],"MediaKeySessionType":[],"MediaKeysPolicy":[],"MediaKeysRequirement":[],"MediaKeyStatus":[],"MediaKeyStatusMap":["MediaKeyStatusMap"],"MediaKeyStatusMapIterator":[],"MediaKeySystemAccess":["MediaKeySystemAccess"],"MediaKeySystemConfiguration":[],"MediaKeySystemMediaCapability":[],"MediaList":["MediaList"],"MediaMetadata":["MediaMetadata"],"MediaMetadataInit":[],"MediaPositionState":[],"MediaProvider":[],"MediaQueryList":["MediaQueryList"],"MediaQueryListEvent":["MediaQueryListEvent"],"MediaQueryListEventInit":[],"MediaQueryListEventMap":[],"MediaRecorder":["MediaRecorder"],"MediaRecorderEventMap":[],"MediaRecorderOptions":[],"MediaSession":["MediaSession"],"MediaSessionAction":[],"MediaSessionActionDetails":[],"MediaSessionActionHandler":[],"MediaSessionPlaybackState":[],"MediaSettingsRange":[],"MediaSource":["MediaSource"],"MediaSourceEventMap":[],"MediaSourceHandle":["MediaSourceHandle"],"MediaStream":["MediaStream"],"MediaStreamAudioDestinationNode":["MediaStreamAudioDestinationNode"],"MediaStreamAudioSourceNode":["MediaStreamAudioSourceNode"],"MediaStreamAudioSourceOptions":[],"MediaStreamConstraints":[],"MediaStreamEventMap":[],"MediaStreamTrack":["MediaStreamTrack"],"MediaStreamTrackEvent":["MediaStreamTrackEvent"],"MediaStreamTrackEventInit":[],"MediaStreamTrackEventMap":[],"MediaStreamTrackProcessor":["MediaStreamTrackProcessor"],"MediaStreamTrackProcessorInit":[],"MediaStreamTrackState":[],"MediaTrackCapabilities":[],"MediaTrackConstraints":[],"MediaTrackConstraintSet":[],"MediaTrackSettings":[],"MediaTrackSupportedConstraints":[],"menubar":[],"MessageChannel":["MessageChannel"],"MessageEvent":["MessageEvent"],"MessageEventInit":[],"MessageEventSource":[],"MessageEventTarget":["message_event"],"MessageEventTargetEventMap":[],"MessagePort":["MessagePort"],"MessagePortEventMap":[],"MethodDecorator":[],"MIDIAccess":["MIDIAccess"],"MIDIAccessEventMap":[],"MIDIConnectionEvent":["MIDIConnectionEvent"],"MIDIConnectionEventInit":[],"MIDIInput":["MIDIInput"],"MIDIInputEventMap":[],"MIDIInputMap":["MIDIInputMap"],"MIDIMessageEvent":["MIDIMessageEvent"],"MIDIMessageEventInit":[],"MIDIOptions":[],"MIDIOutput":["send"],"MIDIOutputMap":["MIDIOutputMap"],"MIDIPort":["MIDIPort"],"MIDIPortConnectionState":[],"MIDIPortDeviceState":[],"MIDIPortEventMap":[],"MIDIPortType":[],"MimeType":["MimeType"],"MimeTypeArray":["MimeTypeArray"],"MouseEvent":["MouseEvent"],"MouseEventInit":[],"moveBy":["Window/moveBy"],"moveTo":["Window/moveTo"],"MultiCacheQueryOptions":[],"MutationCallback":[],"MutationObserver":["MutationObserver"],"MutationObserverInit":[],"MutationRecord":["MutationRecord"],"MutationRecordType":[],"name":[],"NamedCurve":[],"NamedNodeMap":["NamedNodeMap"],"NaN":[],"NavigationActivation":["NavigationActivation"],"NavigationHistoryEntry":["NavigationHistoryEntry"],"NavigationHistoryEntryEventMap":[],"NavigationPreloadManager":["NavigationPreloadManager"],"NavigationPreloadState":[],"NavigationTimingType":[],"NavigationType":[],"navigator":[],"Navigator":["requestMediaKeySystemAccess"],"NavigatorAutomationInformation":["webdriver"],"NavigatorBadge":["clearAppBadge"],"NavigatorConcurrentHardware":["hardwareConcurrency"],"NavigatorContentUtils":["registerProtocolHandler"],"NavigatorCookies":["cookieEnabled"],"NavigatorID":["appCodeName"],"NavigatorLanguage":["language"],"NavigatorLocks":["locks"],"NavigatorLogin":["NavigatorLogin"],"NavigatorOnLine":["onLine"],"NavigatorPlugins":["mimeTypes"],"NavigatorStorage":["storage"],"NewableFunction":[],"Node":["Node"],"NodeFilter":[],"NodeIterator":["NodeIterator"],"NodeList":["NodeList"],"NodeListOf":[],"NoInfer":["https://www.typescriptlang.org/docs/handbook/utility-types.html#noinfertype"],"NonDocumentTypeChildNode":["nextElementSibling"],"NonElementParentNode":["getElementById"],"NonNullable":["https://www.typescriptlang.org/docs/handbook/utility-types.html#extracttype-union"],"Notification":["Notification"],"NotificationDirection":[],"NotificationEvent":["NotificationEvent"],"NotificationEventInit":[],"NotificationEventMap":[],"NotificationOptions":[],"NotificationPermission":[],"NotificationPermissionCallback":[],"Number":[],"NumberConstructor":[],"Object":[],"ObjectConstructor":[],"OES_draw_buffers_indexed":["OES_draw_buffers_indexed"],"OES_element_index_uint":["OES_element_index_uint"],"OES_fbo_render_mipmap":["OES_fbo_render_mipmap"],"OES_standard_derivatives":["OES_standard_derivatives"],"OES_texture_float":["OES_texture_float"],"OES_texture_float_linear":["OES_texture_float_linear"],"OES_texture_half_float":["OES_texture_half_float"],"OES_texture_half_float_linear":["OES_texture_half_float_linear"],"OES_vertex_array_object":["OES_vertex_array_object"],"OfflineAudioCompletionEvent":["OfflineAudioCompletionEvent"],"OfflineAudioCompletionEventInit":[],"OfflineAudioContext":["OfflineAudioContext"],"OfflineAudioContextEventMap":[],"OfflineAudioContextOptions":[],"OffscreenCanvas":["OffscreenCanvas"],"OffscreenCanvasEventMap":[],"OffscreenCanvasRenderingContext2D":["OffscreenCanvasRenderingContext2D"],"OffscreenRenderingContext":[],"OffscreenRenderingContextId":[],"Omit":["https://www.typescriptlang.org/docs/handbook/utility-types.html#omittype-keys"],"OmitThisParameter":["https://www.typescriptlang.org/docs/handbook/utility-types.html#omitthisparametertype"],"onabort":[],"onafterprint":[],"onanimationcancel":[],"onanimationend":[],"onanimationiteration":[],"onanimationstart":[],"onauxclick":[],"onbeforeinput":[],"onbeforematch":[],"onbeforeprint":[],"onbeforetoggle":[],"onbeforeunload":[],"OnBeforeUnloadEventHandler":[],"OnBeforeUnloadEventHandlerNonNull":[],"onblur":[],"oncancel":[],"oncanplay":[],"oncanplaythrough":[],"onchange":[],"onclick":[],"onclose":[],"oncontextlost":[],"oncontextmenu":[],"oncontextrestored":[],"oncopy":[],"oncuechange":[],"oncut":[],"ondblclick":[],"ondevicemotion":[],"ondeviceorientation":[],"ondeviceorientationabsolute":[],"ondrag":[],"ondragend":[],"ondragenter":[],"ondragleave":[],"ondragover":[],"ondragstart":[],"ondrop":[],"ondurationchange":[],"onemptied":[],"onended":[],"onerror":[],"OnErrorEventHandler":[],"OnErrorEventHandlerNonNull":[],"onfocus":[],"onformdata":[],"ongamepadconnected":[],"ongamepaddisconnected":[],"ongotpointercapture":[],"onhashchange":[],"oninput":[],"oninvalid":[],"onkeydown":[],"onkeypress":[],"onkeyup":[],"onlanguagechange":[],"onload":[],"onloadeddata":[],"onloadedmetadata":[],"onloadstart":[],"onlostpointercapture":[],"onmessage":[],"onmessageerror":[],"onmousedown":[],"onmouseenter":[],"onmouseleave":[],"onmousemove":[],"onmouseout":[],"onmouseover":[],"onmouseup":[],"onoffline":[],"ononline":[],"onorientationchange":[],"onpagehide":[],"onpagereveal":[],"onpageshow":[],"onpageswap":[],"onpaste":[],"onpause":[],"onplay":[],"onplaying":[],"onpointercancel":[],"onpointerdown":[],"onpointerenter":[],"onpointerleave":[],"onpointermove":[],"onpointerout":[],"onpointerover":[],"onpointerrawupdate":[],"onpointerup":[],"onpopstate":[],"onprogress":[],"onratechange":[],"onrejectionhandled":[],"onreset":[],"onresize":[],"onrtctransform":[],"onscroll":[],"onscrollend":[],"onsecuritypolicyviolation":[],"onseeked":[],"onseeking":[],"onselect":[],"onselectionchange":[],"onselectstart":[],"onslotchange":[],"onstalled":[],"onstorage":[],"onsubmit":[],"onsuspend":[],"ontimeupdate":[],"ontoggle":[],"ontouchcancel":[],"ontouchend":[],"ontouchmove":[],"ontouchstart":[],"ontransitioncancel":[],"ontransitionend":[],"ontransitionrun":[],"ontransitionstart":[],"onunhandledrejection":[],"onunload":[],"onvolumechange":[],"onwaiting":[],"onwebkitanimationend":[],"onwebkitanimationiteration":[],"onwebkitanimationstart":[],"onwebkittransitionend":[],"onwheel":[],"open":["Window/open"],"opener":[],"Option":[],"OptionalEffectTiming":[],"OptionalPostfixToken":[],"OptionalPrefixToken":[],"OpusBitstreamFormat":[],"OpusEncoderConfig":[],"orientation":[],"OrientationType":[],"origin":[],"originAgentCluster":[],"OscillatorNode":["OscillatorNode"],"OscillatorOptions":[],"OscillatorType":[],"outerHeight":[],"outerWidth":[],"OverconstrainedError":["OverconstrainedError"],"OverSampleType":[],"OVR_multiview2":["OVR_multiview2"],"PageRevealEvent":["PageRevealEvent"],"PageRevealEventInit":[],"PageSwapEvent":["PageSwapEvent"],"PageSwapEventInit":[],"PageTransitionEvent":["PageTransitionEvent"],"PageTransitionEventInit":[],"pageXOffset":[],"pageYOffset":[],"PannerNode":["PannerNode"],"PannerOptions":[],"PanningModelType":[],"ParameterDecorator":[],"Parameters":["https://www.typescriptlang.org/docs/handbook/utility-types.html#parameterstype"],"parent":[],"ParentNode":["childElementCount"],"parseFloat":[],"parseInt":[],"Partial":["https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype"],"Path2D":["Path2D"],"PayerErrors":[],"PaymentAddress":["ContactAddress"],"PaymentComplete":[],"PaymentCurrencyAmount":[],"PaymentDetailsBase":[],"PaymentDetailsInit":[],"PaymentDetailsModifier":[],"PaymentDetailsUpdate":[],"PaymentItem":[],"PaymentMethodChangeEvent":["PaymentMethodChangeEvent"],"PaymentMethodChangeEventInit":[],"PaymentMethodData":[],"PaymentOptions":[],"PaymentRequest":["PaymentRequest"],"PaymentRequestEventMap":[],"PaymentRequestUpdateEvent":["PaymentRequestUpdateEvent"],"PaymentRequestUpdateEventInit":[],"PaymentResponse":["PaymentResponse"],"PaymentResponseEventMap":[],"PaymentShippingOption":[],"PaymentShippingType":[],"PaymentValidationErrors":[],"Pbkdf2Params":[],"performance":[],"Performance":["Performance"],"PerformanceEntry":["PerformanceEntry"],"PerformanceEntryList":[],"PerformanceEventMap":[],"PerformanceEventTiming":["PerformanceEventTiming"],"PerformanceMark":["PerformanceMark"],"PerformanceMarkOptions":[],"PerformanceMeasure":["PerformanceMeasure"],"PerformanceMeasureOptions":[],"PerformanceNavigation":["PerformanceNavigation"],"PerformanceNavigationTiming":["PerformanceNavigationTiming"],"PerformanceObserver":["PerformanceObserver"],"PerformanceObserverCallback":[],"PerformanceObserverEntryList":["PerformanceObserverEntryList"],"PerformanceObserverInit":[],"PerformancePaintTiming":["PerformancePaintTiming"],"PerformanceResourceTiming":["PerformanceResourceTiming"],"PerformanceServerTiming":["PerformanceServerTiming"],"PerformanceTiming":["PerformanceTiming"],"PeriodicWave":["PeriodicWave"],"PeriodicWaveConstraints":[],"PeriodicWaveOptions":[],"PermissionDescriptor":[],"PermissionName":[],"Permissions":["Permissions"],"PermissionState":[],"PermissionStatus":["PermissionStatus"],"PermissionStatusEventMap":[],"personalbar":[],"PhotoCapabilities":[],"PhotoSettings":[],"Pick":["https://www.typescriptlang.org/docs/handbook/utility-types.html#picktype-keys"],"PictureInPictureEvent":["PictureInPictureEvent"],"PictureInPictureEventInit":[],"PictureInPictureWindow":["PictureInPictureWindow"],"PictureInPictureWindowEventMap":[],"PlaneLayout":[],"PlaybackDirection":[],"Plugin":["Plugin"],"PluginArray":["PluginArray"],"PointerEvent":["PointerEvent"],"PointerEventInit":[],"PointerLockOptions":[],"PopoverInvokerElement":["popoverTargetAction"],"PopStateEvent":["PopStateEvent"],"PopStateEventInit":[],"PositionAlignSetting":[],"PositionCallback":[],"PositionErrorCallback":[],"PositionOptions":[],"postMessage":["DedicatedWorkerGlobalScope/postMessage"],"PredefinedColorSpace":[],"PremultiplyAlpha":[],"PresentationStyle":[],"print":["Window/print"],"ProcessingInstruction":["ProcessingInstruction"],"ProgressEvent":["ProgressEvent"],"ProgressEventInit":[],"Promise":["https://next.gha.afd.arcgis.com/javascript/latest/programming-patterns/"],"PromiseConstructor":[],"PromiseConstructorLike":[],"PromiseFulfilledResult":[],"PromiseLike":[],"PromiseRejectedResult":[],"PromiseRejectionEvent":["PromiseRejectionEvent"],"PromiseRejectionEventInit":[],"PromiseSettledResult":[],"PromiseWithResolvers":[],"prompt":["Window/prompt"],"PropertyDecorator":[],"PropertyDefinition":[],"PropertyDescriptor":[],"PropertyDescriptorMap":[],"PropertyIndexedKeyframes":[],"PropertyKey":[],"Proxy":[],"ProxyConstructor":[],"ProxyHandler":[],"PublicKeyCredential":["PublicKeyCredential"],"PublicKeyCredentialClientCapabilities":[],"PublicKeyCredentialCreationOptions":[],"PublicKeyCredentialCreationOptionsJSON":[],"PublicKeyCredentialDescriptor":[],"PublicKeyCredentialDescriptorJSON":[],"PublicKeyCredentialEntity":[],"PublicKeyCredentialJSON":[],"PublicKeyCredentialParameters":[],"PublicKeyCredentialRequestOptions":[],"PublicKeyCredentialRequestOptionsJSON":[],"PublicKeyCredentialRpEntity":[],"PublicKeyCredentialType":[],"PublicKeyCredentialUserEntity":[],"PublicKeyCredentialUserEntityJSON":[],"PushEncryptionKeyName":[],"PushEvent":["PushEvent"],"PushEventInit":[],"PushManager":["PushManager"],"PushMessageData":["PushMessageData"],"PushMessageDataInit":[],"PushSubscription":["PushSubscription"],"PushSubscriptionChangeEvent":[],"PushSubscriptionChangeEventInit":[],"PushSubscriptionJSON":[],"PushSubscriptionOptions":["PushSubscriptionOptions"],"PushSubscriptionOptionsInit":[],"queueMicrotask":["Window/queueMicrotask"],"QueuingStrategy":[],"QueuingStrategyInit":[],"QueuingStrategySize":[],"RadioNodeList":["RadioNodeList"],"Range":["Range"],"RangeError":[],"RangeErrorConstructor":[],"ReadableByteStreamController":["ReadableByteStreamController"],"ReadableStream":["ReadableStream"],"ReadableStreamAsyncIterator":[],"ReadableStreamBYOBReader":["ReadableStreamBYOBReader"],"ReadableStreamBYOBRequest":["ReadableStreamBYOBRequest"],"ReadableStreamController":[],"ReadableStreamDefaultController":["ReadableStreamDefaultController"],"ReadableStreamDefaultReader":["ReadableStreamDefaultReader"],"ReadableStreamGenericReader":["closed"],"ReadableStreamGetReaderOptions":[],"ReadableStreamIteratorOptions":[],"ReadableStreamReadDoneResult":[],"ReadableStreamReader":[],"ReadableStreamReaderMode":[],"ReadableStreamReadResult":[],"ReadableStreamReadValueResult":[],"ReadableStreamType":[],"ReadableWritablePair":[],"Readonly":["https://www.typescriptlang.org/docs/handbook/utility-types.html#readonlytype"],"ReadonlyArray":[],"ReadonlyMap":[],"ReadonlySet":[],"ReadonlySetLike":[],"ReadyState":[],"Record":["https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type"],"RecordingState":[],"RedEyeReduction":[],"ReferenceError":[],"ReferenceErrorConstructor":[],"ReferrerPolicy":[],"Reflect":[null,{"apply":[],"construct":[],"defineProperty":[],"deleteProperty":[],"get":[],"getOwnPropertyDescriptor":[],"getPrototypeOf":[],"has":[],"isExtensible":[],"ownKeys":[],"preventExtensions":[],"set":[],"setPrototypeOf":[]}],"RegExp":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RegExp"],"RegExpConstructor":[],"RegExpExecArray":[],"RegExpIndicesArray":[],"RegExpMatchArray":[],"RegExpStringIterator":[],"RegistrationOptions":[],"releaseEvents":["Window/releaseEvents"],"RemotePlayback":["RemotePlayback"],"RemotePlaybackAvailabilityCallback":[],"RemotePlaybackEventMap":[],"RemotePlaybackState":[],"removeEventListener":[],"RenderingContext":[],"Report":["Report"],"ReportBody":["ReportBody"],"reportError":["Window/reportError"],"ReportingObserver":["ReportingObserver"],"ReportingObserverCallback":[],"ReportingObserverOptions":[],"ReportList":[],"Request":["Request"],"requestAnimationFrame":["DedicatedWorkerGlobalScope/requestAnimationFrame"],"RequestCache":[],"RequestCredentials":[],"RequestDestination":[],"requestIdleCallback":["Window/requestIdleCallback"],"RequestInfo":[],"RequestInit":[],"RequestMode":[],"RequestPriority":[],"RequestRedirect":[],"Required":["https://www.typescriptlang.org/docs/handbook/utility-types.html#requiredtype"],"ResidentKeyRequirement":[],"resizeBy":["Window/resizeBy"],"ResizeObserver":["ResizeObserver"],"ResizeObserverBoxOptions":[],"ResizeObserverCallback":[],"ResizeObserverEntry":["ResizeObserverEntry"],"ResizeObserverOptions":[],"ResizeObserverSize":["ResizeObserverSize"],"ResizeQuality":[],"resizeTo":["Window/resizeTo"],"Response":["Response"],"ResponseInit":[],"ResponseType":[],"ReturnType":["https://www.typescriptlang.org/docs/handbook/utility-types.html#returntypetype"],"RsaHashedImportParams":[],"RsaHashedKeyAlgorithm":[],"RsaHashedKeyGenParams":[],"RsaKeyAlgorithm":[],"RsaKeyGenParams":[],"RsaOaepParams":[],"RsaOtherPrimesInfo":[],"RsaPssParams":[],"RTCAnswerOptions":[],"RTCBundlePolicy":[],"RTCCertificate":["RTCCertificate"],"RTCCertificateExpiration":[],"RTCConfiguration":[],"RTCDataChannel":["RTCDataChannel"],"RTCDataChannelEvent":["RTCDataChannelEvent"],"RTCDataChannelEventInit":[],"RTCDataChannelEventMap":[],"RTCDataChannelInit":[],"RTCDataChannelState":[],"RTCDegradationPreference":[],"RTCDtlsFingerprint":[],"RTCDtlsRole":[],"RTCDtlsTransport":["RTCDtlsTransport"],"RTCDtlsTransportEventMap":[],"RTCDtlsTransportState":[],"RTCDTMFSender":["RTCDTMFSender"],"RTCDTMFSenderEventMap":[],"RTCDTMFToneChangeEvent":["RTCDTMFToneChangeEvent"],"RTCDTMFToneChangeEventInit":[],"RTCEncodedAudioFrame":["RTCEncodedAudioFrame"],"RTCEncodedAudioFrameMetadata":[],"RTCEncodedFrameMetadata":[],"RTCEncodedVideoFrame":["RTCEncodedVideoFrame"],"RTCEncodedVideoFrameMetadata":[],"RTCEncodedVideoFrameType":[],"RTCError":["RTCError"],"RTCErrorDetailType":[],"RTCErrorEvent":["RTCErrorEvent"],"RTCErrorEventInit":[],"RTCErrorInit":[],"RTCIceCandidate":["RTCIceCandidate"],"RTCIceCandidateInit":[],"RTCIceCandidatePair":[],"RTCIceCandidatePairStats":[],"RTCIceCandidateType":[],"RTCIceComponent":[],"RTCIceConnectionState":[],"RTCIceGathererState":[],"RTCIceGatheringState":[],"RTCIceProtocol":[],"RTCIceRole":[],"RTCIceServer":[],"RTCIceTcpCandidateType":[],"RTCIceTransport":["RTCIceTransport"],"RTCIceTransportEventMap":[],"RTCIceTransportPolicy":[],"RTCIceTransportState":[],"RTCInboundRtpStreamStats":[],"RTCLocalIceCandidateInit":[],"RTCLocalSessionDescriptionInit":[],"RTCOfferAnswerOptions":[],"RTCOfferOptions":[],"RTCOutboundRtpStreamStats":[],"RTCPeerConnection":["RTCPeerConnection"],"RTCPeerConnectionErrorCallback":[],"RTCPeerConnectionEventMap":[],"RTCPeerConnectionIceErrorEvent":["RTCPeerConnectionIceErrorEvent"],"RTCPeerConnectionIceErrorEventInit":[],"RTCPeerConnectionIceEvent":["RTCPeerConnectionIceEvent"],"RTCPeerConnectionIceEventInit":[],"RTCPeerConnectionState":[],"RTCPriorityType":[],"RTCQualityLimitationReason":[],"RTCReceivedRtpStreamStats":[],"RTCRtcpMuxPolicy":[],"RTCRtcpParameters":[],"RTCRtpCapabilities":[],"RTCRtpCodec":[],"RTCRtpCodecParameters":[],"RTCRtpCodingParameters":[],"RTCRtpContributingSource":[],"RTCRtpEncodingParameters":[],"RTCRtpHeaderExtensionCapability":[],"RTCRtpHeaderExtensionParameters":[],"RTCRtpParameters":[],"RTCRtpReceiveParameters":[],"RTCRtpReceiver":["RTCRtpReceiver"],"RTCRtpScriptTransform":["RTCRtpScriptTransform"],"RTCRtpScriptTransformer":["RTCRtpScriptTransformer"],"RTCRtpSender":["RTCRtpSender"],"RTCRtpSendParameters":[],"RTCRtpStreamStats":[],"RTCRtpSynchronizationSource":[],"RTCRtpTransceiver":["setCodecPreferences"],"RTCRtpTransceiverDirection":[],"RTCRtpTransceiverInit":[],"RTCRtpTransform":[],"RTCSctpTransport":["RTCSctpTransport"],"RTCSctpTransportEventMap":[],"RTCSctpTransportState":[],"RTCSdpType":[],"RTCSentRtpStreamStats":[],"RTCSessionDescription":["RTCSessionDescription"],"RTCSessionDescriptionCallback":[],"RTCSessionDescriptionInit":[],"RTCSetParameterOptions":[],"RTCSignalingState":[],"RTCStats":[],"RTCStatsIceCandidatePairState":[],"RTCStatsReport":["RTCStatsReport"],"RTCStatsType":[],"RTCTrackEvent":["RTCTrackEvent"],"RTCTrackEventInit":[],"RTCTransformEvent":["RTCTransformEvent"],"RTCTransportStats":[],"SafeArray":[],"screen":[],"Screen":["Screen"],"screenLeft":[],"ScreenOrientation":["ScreenOrientation"],"ScreenOrientationEventMap":[],"screenTop":[],"screenX":[],"screenY":[],"ScriptProcessorNode":["ScriptProcessorNode"],"ScriptProcessorNodeEventMap":[],"scroll":["Window/scroll"],"scrollbars":[],"ScrollBehavior":[],"scrollBy":["Window/scrollBy"],"ScrollIntoViewOptions":[],"ScrollLogicalPosition":[],"ScrollOptions":[],"ScrollRestoration":[],"ScrollSetting":[],"scrollTo":["Window/scrollTo"],"ScrollToOptions":[],"scrollX":[],"scrollY":[],"SecurityPolicyViolationEvent":["SecurityPolicyViolationEvent"],"SecurityPolicyViolationEventDisposition":[],"SecurityPolicyViolationEventInit":[],"Selection":["Selection"],"SelectionMode":[],"self":[],"ServiceWorker":["ServiceWorker"],"ServiceWorkerContainer":["ServiceWorkerContainer"],"ServiceWorkerContainerEventMap":[],"ServiceWorkerEventMap":[],"ServiceWorkerGlobalScope":["ServiceWorkerGlobalScope"],"ServiceWorkerGlobalScopeEventMap":[],"ServiceWorkerRegistration":["ServiceWorkerRegistration"],"ServiceWorkerRegistrationEventMap":[],"ServiceWorkerState":[],"ServiceWorkerUpdateViaCache":[],"sessionStorage":[],"Set":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Set"],"SetConstructor":[],"setInterval":["Window/setInterval"],"SetIterator":[],"setTimeout":["Window/setTimeout"],"ShadowRoot":["ShadowRoot"],"ShadowRootEventMap":[],"ShadowRootInit":[],"ShadowRootMode":[],"SharedArrayBuffer":[],"SharedArrayBufferConstructor":[],"ShareData":[],"SharedWorker":["SharedWorker"],"SharedWorkerGlobalScope":["SharedWorkerGlobalScope"],"SharedWorkerGlobalScopeEventMap":[],"SlotAssignmentMode":[],"Slottable":["assignedSlot"],"SourceBuffer":["SourceBuffer"],"SourceBufferEventMap":[],"SourceBufferList":["SourceBufferList"],"SourceBufferListEventMap":[],"SpeechRecognitionAlternative":["SpeechRecognitionAlternative"],"SpeechRecognitionResult":["SpeechRecognitionResult"],"SpeechRecognitionResultList":["SpeechRecognitionResultList"],"speechSynthesis":[],"SpeechSynthesis":["SpeechSynthesis"],"SpeechSynthesisErrorCode":[],"SpeechSynthesisErrorEvent":["SpeechSynthesisErrorEvent"],"SpeechSynthesisErrorEventInit":[],"SpeechSynthesisEvent":["SpeechSynthesisEvent"],"SpeechSynthesisEventInit":[],"SpeechSynthesisEventMap":[],"SpeechSynthesisUtterance":["SpeechSynthesisUtterance"],"SpeechSynthesisUtteranceEventMap":[],"SpeechSynthesisVoice":["SpeechSynthesisVoice"],"StartViewTransitionOptions":[],"StaticRange":["StaticRange"],"StaticRangeInit":[],"status":[],"statusbar":[],"StereoPannerNode":["StereoPannerNode"],"StereoPannerOptions":[],"stop":["Window/stop"],"Storage":["Storage"],"StorageEstimate":[],"StorageEvent":["StorageEvent"],"StorageEventInit":[],"StorageManager":["StorageManager"],"StreamPipeOptions":[],"String":[],"StringConstructor":[],"StringIterator":[],"structuredClone":["Window/structuredClone"],"StructuredSerializeOptions":[],"StyleMedia":[],"StylePropertyMap":["StylePropertyMap"],"StylePropertyMapReadOnly":["StylePropertyMapReadOnly"],"StylePropertyMapReadOnlyIterator":[],"StyleSheet":["StyleSheet"],"StyleSheetList":["StyleSheetList"],"SubmitEvent":["SubmitEvent"],"SubmitEventInit":[],"SubtleCrypto":["deriveKey"],"SuppressedError":[],"SuppressedErrorConstructor":[],"SVGAElement":["SVGAElement"],"SVGAngle":["SVGAngle"],"SVGAnimatedAngle":["SVGAnimatedAngle"],"SVGAnimatedBoolean":["SVGAnimatedBoolean"],"SVGAnimatedEnumeration":["SVGAnimatedEnumeration"],"SVGAnimatedInteger":["SVGAnimatedInteger"],"SVGAnimatedLength":["SVGAnimatedLength"],"SVGAnimatedLengthList":["SVGAnimatedLengthList"],"SVGAnimatedNumber":["SVGAnimatedNumber"],"SVGAnimatedNumberList":["SVGAnimatedNumberList"],"SVGAnimatedPoints":["animatedPoints"],"SVGAnimatedPreserveAspectRatio":["SVGAnimatedPreserveAspectRatio"],"SVGAnimatedRect":["SVGAnimatedRect"],"SVGAnimatedString":["SVGAnimatedString"],"SVGAnimatedTransformList":["SVGAnimatedTransformList"],"SVGAnimateElement":["SVGAnimateElement"],"SVGAnimateMotionElement":["SVGAnimateMotionElement"],"SVGAnimateTransformElement":["SVGAnimateTransformElement"],"SVGAnimationElement":["SVGAnimationElement"],"SVGBoundingBoxOptions":[],"SVGCircleElement":["SVGCircleElement"],"SVGClipPathElement":["SVGClipPathElement"],"SVGComponentTransferFunctionElement":["SVGComponentTransferFunctionElement"],"SVGDefsElement":["SVGDefsElement"],"SVGDescElement":["SVGDescElement"],"SVGElement":["SVGElement"],"SVGElementEventMap":[],"SVGElementTagNameMap":[],"SVGEllipseElement":["SVGEllipseElement"],"SVGFEBlendElement":["SVGFEBlendElement"],"SVGFEColorMatrixElement":["SVGFEColorMatrixElement"],"SVGFEComponentTransferElement":["SVGFEComponentTransferElement"],"SVGFECompositeElement":["SVGFECompositeElement"],"SVGFEConvolveMatrixElement":["SVGFEConvolveMatrixElement"],"SVGFEDiffuseLightingElement":["SVGFEDiffuseLightingElement"],"SVGFEDisplacementMapElement":["SVGFEDisplacementMapElement"],"SVGFEDistantLightElement":["SVGFEDistantLightElement"],"SVGFEDropShadowElement":["SVGFEDropShadowElement"],"SVGFEFloodElement":["SVGFEFloodElement"],"SVGFEFuncAElement":["SVGFEFuncAElement"],"SVGFEFuncBElement":["SVGFEFuncBElement"],"SVGFEFuncGElement":["SVGFEFuncGElement"],"SVGFEFuncRElement":["SVGFEFuncRElement"],"SVGFEGaussianBlurElement":["SVGFEGaussianBlurElement"],"SVGFEImageElement":["SVGFEImageElement"],"SVGFEMergeElement":["SVGFEMergeElement"],"SVGFEMergeNodeElement":["SVGFEMergeNodeElement"],"SVGFEMorphologyElement":["SVGFEMorphologyElement"],"SVGFEOffsetElement":["SVGFEOffsetElement"],"SVGFEPointLightElement":["SVGFEPointLightElement"],"SVGFESpecularLightingElement":["SVGFESpecularLightingElement"],"SVGFESpotLightElement":["SVGFESpotLightElement"],"SVGFETileElement":["SVGFETileElement"],"SVGFETurbulenceElement":["SVGFETurbulenceElement"],"SVGFilterElement":["SVGFilterElement"],"SVGFilterPrimitiveStandardAttributes":["height"],"SVGFitToViewBox":["preserveAspectRatio"],"SVGForeignObjectElement":["SVGForeignObjectElement"],"SVGGElement":["SVGGElement"],"SVGGeometryElement":["SVGGeometryElement"],"SVGGradientElement":["SVGGradientElement"],"SVGGraphicsElement":["SVGGraphicsElement"],"SVGImageElement":["SVGImageElement"],"SVGLength":["SVGLength"],"SVGLengthList":["SVGLengthList"],"SVGLinearGradientElement":["SVGLinearGradientElement"],"SVGLineElement":["SVGLineElement"],"SVGMarkerElement":["SVGMarkerElement"],"SVGMaskElement":["SVGMaskElement"],"SVGMatrix":[],"SVGMetadataElement":["SVGMetadataElement"],"SVGMPathElement":["SVGMPathElement"],"SVGNumber":["SVGNumber"],"SVGNumberList":["SVGNumberList"],"SVGPathElement":["SVGPathElement"],"SVGPatternElement":["SVGPatternElement"],"SVGPoint":[],"SVGPointList":["SVGPointList"],"SVGPolygonElement":["SVGPolygonElement"],"SVGPolylineElement":["SVGPolylineElement"],"SVGPreserveAspectRatio":["SVGPreserveAspectRatio"],"SVGRadialGradientElement":["SVGRadialGradientElement"],"SVGRect":[],"SVGRectElement":["SVGRectElement"],"SVGScriptElement":["SVGScriptElement"],"SVGSetElement":["SVGSetElement"],"SVGStopElement":["SVGStopElement"],"SVGStringList":["SVGStringList"],"SVGStyleElement":["SVGStyleElement"],"SVGSVGElement":["SVGSVGElement"],"SVGSVGElementEventMap":[],"SVGSwitchElement":["SVGSwitchElement"],"SVGSymbolElement":["SVGSymbolElement"],"SVGTests":["requiredExtensions"],"SVGTextContentElement":["SVGTextContentElement"],"SVGTextElement":["SVGTextElement"],"SVGTextPathElement":["SVGTextPathElement"],"SVGTextPositioningElement":["SVGTextPositioningElement"],"SVGTitleElement":["SVGTitleElement"],"SVGTransform":["SVGTransform"],"SVGTransformList":["SVGTransformList"],"SVGTSpanElement":["SVGTSpanElement"],"SVGUnitTypes":["SVGUnitTypes"],"SVGURIReference":["href"],"SVGUseElement":["SVGUseElement"],"SVGViewElement":["SVGViewElement"],"Symbol":[],"SymbolConstructor":[],"SyntaxError":[],"SyntaxErrorConstructor":[],"TemplateStringsArray":[],"TexImageSource":[],"Text":["Text"],"TextDecodeOptions":[],"TextDecoder":["TextDecoder"],"TextDecoderCommon":["encoding"],"TextDecoderOptions":[],"TextDecoderStream":["TextDecoderStream"],"TextEncoder":["TextEncoder"],"TextEncoderCommon":["encoding"],"TextEncoderEncodeIntoResult":[],"TextEncoderStream":["TextEncoderStream"],"TextEvent":["TextEvent"],"TextMetrics":["TextMetrics"],"TextStreamBase":[],"TextStreamReader":[],"TextStreamWriter":[],"TextTrack":["TextTrack"],"TextTrackCue":["TextTrackCue"],"TextTrackCueEventMap":[],"TextTrackCueList":["TextTrackCueList"],"TextTrackEventMap":[],"TextTrackKind":[],"TextTrackList":["TextTrackList"],"TextTrackListEventMap":[],"TextTrackMode":[],"ThisParameterType":["https://www.typescriptlang.org/docs/handbook/utility-types.html#thisparametertypetype"],"ThisType":["https://www.typescriptlang.org/docs/handbook/utility-types.html#thistypetype"],"TimeRanges":["TimeRanges"],"TimerHandler":[],"ToggleEvent":["ToggleEvent"],"ToggleEventInit":[],"toolbar":[],"top":[],"Touch":["Touch"],"TouchEvent":["TouchEvent"],"TouchEventInit":[],"TouchInit":[],"TouchList":["TouchList"],"TouchType":[],"TrackEvent":["TrackEvent"],"TrackEventInit":[],"Transferable":[],"TransferFunction":[],"Transformer":[],"TransformerFlushCallback":[],"TransformerStartCallback":[],"TransformerTransformCallback":[],"TransformStream":["TransformStream"],"TransformStreamDefaultController":["TransformStreamDefaultController"],"TransitionEvent":["TransitionEvent"],"TransitionEventInit":[],"TreeWalker":["TreeWalker"],"TypedPropertyDescriptor":[],"TypeError":[],"TypeErrorConstructor":[],"UIEvent":["UIEvent"],"UIEventInit":[],"Uint16Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array"],"Uint16ArrayConstructor":[],"Uint32Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array"],"Uint32ArrayConstructor":[],"Uint32List":[],"Uint8Array":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array"],"Uint8ArrayConstructor":[],"Uint8ClampedArray":["https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray"],"Uint8ClampedArrayConstructor":[],"ULongRange":[],"Uncapitalize":["https://www.typescriptlang.org/docs/handbook/utility-types.html#intrinsic-string-manipulation-types"],"UnderlyingByteSource":[],"UnderlyingDefaultSource":[],"UnderlyingSink":[],"UnderlyingSinkAbortCallback":[],"UnderlyingSinkCloseCallback":[],"UnderlyingSinkStartCallback":[],"UnderlyingSinkWriteCallback":[],"UnderlyingSource":[],"UnderlyingSourceCancelCallback":[],"UnderlyingSourcePullCallback":[],"UnderlyingSourceStartCallback":[],"unescape":[],"Uppercase":["https://www.typescriptlang.org/docs/handbook/utility-types.html#intrinsic-string-manipulation-types"],"URIError":[],"URIErrorConstructor":[],"URL":["URL"],"URLSearchParams":["URLSearchParams"],"URLSearchParamsIterator":[],"UserActivation":["UserActivation"],"UserVerificationRequirement":[],"ValidityState":["ValidityState"],"ValidityStateFlags":[],"VarDate":[],"VBArray":[],"VBArrayConstructor":[],"VibratePattern":[],"VideoColorPrimaries":[],"VideoColorSpace":["VideoColorSpace"],"VideoColorSpaceInit":[],"VideoConfiguration":[],"VideoDecoder":["VideoDecoder"],"VideoDecoderConfig":[],"VideoDecoderEventMap":[],"VideoDecoderInit":[],"VideoDecoderSupport":[],"VideoEncoder":["VideoEncoder"],"VideoEncoderBitrateMode":[],"VideoEncoderConfig":[],"VideoEncoderEncodeOptions":[],"VideoEncoderEncodeOptionsForAvc":[],"VideoEncoderEventMap":[],"VideoEncoderInit":[],"VideoEncoderSupport":[],"VideoFacingModeEnum":[],"VideoFrame":["VideoFrame"],"VideoFrameBufferInit":[],"VideoFrameCallbackMetadata":[],"VideoFrameCopyToOptions":[],"VideoFrameInit":[],"VideoFrameOutputCallback":[],"VideoFrameRequestCallback":[],"VideoMatrixCoefficients":[],"VideoPixelFormat":[],"VideoPlaybackQuality":["VideoPlaybackQuality"],"VideoTransferCharacteristics":[],"ViewTransition":["ViewTransition"],"ViewTransitionTypeSet":[],"ViewTransitionUpdateCallback":[],"visualViewport":[],"VisualViewport":["VisualViewport"],"VisualViewportEventMap":[],"VoidFunction":[],"VTTCue":["VTTCue"],"VTTRegion":["VTTRegion"],"WakeLock":["WakeLock"],"WakeLockSentinel":["WakeLockSentinel"],"WakeLockSentinelEventMap":[],"WakeLockType":[],"WaveShaperNode":["WaveShaperNode"],"WaveShaperOptions":[],"WeakKey":[],"WeakKeyTypes":[],"WeakMap":[],"WeakMapConstructor":[],"WeakRef":[],"WeakRefConstructor":[],"WeakSet":[],"WeakSetConstructor":[],"WebAssembly":[null,{"compile":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compile_static"],"CompileError":[],"compileStreaming":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/compileStreaming_static"],"Exports":[],"ExportValue":[],"Global":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global"],"GlobalDescriptor":[],"ImportExportKind":[],"Imports":[],"ImportValue":[],"Instance":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Instance"],"instantiate":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiate_static"],"instantiateStreaming":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/instantiateStreaming_static"],"LinkError":[],"Memory":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Memory"],"MemoryDescriptor":[],"Module":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Module"],"ModuleExportDescriptor":[],"ModuleImportDescriptor":[],"ModuleImports":[],"RuntimeError":[],"Table":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Table"],"TableDescriptor":[],"TableKind":[],"validate":["https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/validate_static"],"ValueType":[],"ValueTypeMap":[],"WebAssemblyInstantiatedSource":[]}],"WebCodecsErrorCallback":[],"WEBGL_color_buffer_float":["WEBGL_color_buffer_float"],"WEBGL_compressed_texture_astc":["WEBGL_compressed_texture_astc"],"WEBGL_compressed_texture_etc":["WEBGL_compressed_texture_etc"],"WEBGL_compressed_texture_etc1":["WEBGL_compressed_texture_etc1"],"WEBGL_compressed_texture_pvrtc":["WEBGL_compressed_texture_pvrtc"],"WEBGL_compressed_texture_s3tc":["WEBGL_compressed_texture_s3tc"],"WEBGL_compressed_texture_s3tc_srgb":["WEBGL_compressed_texture_s3tc_srgb"],"WEBGL_debug_renderer_info":["WEBGL_debug_renderer_info"],"WEBGL_debug_shaders":["WEBGL_debug_shaders"],"WEBGL_depth_texture":["WEBGL_depth_texture"],"WEBGL_draw_buffers":["drawBuffersWEBGL"],"WEBGL_lose_context":["WEBGL_lose_context"],"WEBGL_multi_draw":["multiDrawArraysInstancedWEBGL"],"WebGL2RenderingContext":["WebGL2RenderingContext"],"WebGL2RenderingContextBase":["clearBuffer"],"WebGL2RenderingContextOverloads":["uniform"],"WebGLActiveInfo":["WebGLActiveInfo"],"WebGLBuffer":["WebGLBuffer"],"WebGLContextAttributes":[],"WebGLContextEvent":["WebGLContextEvent"],"WebGLContextEventInit":[],"WebGLFramebuffer":["WebGLFramebuffer"],"WebGLPowerPreference":[],"WebGLProgram":["WebGLProgram"],"WebGLQuery":["WebGLQuery"],"WebGLRenderbuffer":["WebGLRenderbuffer"],"WebGLRenderingContext":["WebGLRenderingContext"],"WebGLRenderingContextBase":["vertexAttrib"],"WebGLRenderingContextOverloads":["uniform"],"WebGLSampler":["WebGLSampler"],"WebGLShader":["WebGLShader"],"WebGLShaderPrecisionFormat":["WebGLShaderPrecisionFormat"],"WebGLSync":["WebGLSync"],"WebGLTexture":["WebGLTexture"],"WebGLTransformFeedback":["WebGLTransformFeedback"],"WebGLUniformLocation":["WebGLUniformLocation"],"WebGLVertexArrayObject":["WebGLVertexArrayObject"],"WebGLVertexArrayObjectOES":["WebGLVertexArrayObject"],"WebKitCSSMatrix":[],"webkitURL":[],"WebSocket":["WebSocket"],"WebSocketEventMap":[],"WebTransport":["WebTransport"],"WebTransportBidirectionalStream":["WebTransportBidirectionalStream"],"WebTransportCloseInfo":[],"WebTransportCongestionControl":[],"WebTransportDatagramDuplexStream":["WebTransportDatagramDuplexStream"],"WebTransportError":["WebTransportError"],"WebTransportErrorOptions":[],"WebTransportErrorSource":[],"WebTransportHash":[],"WebTransportOptions":[],"WebTransportSendOptions":[],"WebTransportSendStreamOptions":[],"WheelEvent":["WheelEvent"],"WheelEventInit":[],"window":[],"Window":["Window"],"WindowClient":["WindowClient"],"WindowEventHandlers":["afterprint_event"],"WindowEventHandlersEventMap":[],"WindowEventMap":[],"WindowLocalStorage":["localStorage"],"WindowOrWorkerGlobalScope":["caches"],"WindowPostMessageOptions":[],"WindowProxy":[],"WindowSessionStorage":["sessionStorage"],"Worker":["Worker"],"WorkerEventMap":[],"WorkerGlobalScope":["WorkerGlobalScope"],"WorkerGlobalScopeEventMap":[],"WorkerLocation":["WorkerLocation"],"WorkerNavigator":["WorkerNavigator"],"WorkerOptions":[],"WorkerType":[],"Worklet":["Worklet"],"WorkletOptions":[],"WritableStream":["WritableStream"],"WritableStreamDefaultController":["WritableStreamDefaultController"],"WritableStreamDefaultWriter":["WritableStreamDefaultWriter"],"WriteCommandType":[],"WriteParams":[],"WScript":[],"WSH":[],"XMLDocument":["XMLDocument"],"XMLHttpRequest":["XMLHttpRequest"],"XMLHttpRequestBodyInit":[],"XMLHttpRequestEventMap":[],"XMLHttpRequestEventTarget":["XMLHttpRequestEventTarget"],"XMLHttpRequestEventTargetEventMap":[],"XMLHttpRequestResponseType":[],"XMLHttpRequestUpload":["XMLHttpRequestUpload"],"XMLSerializer":["XMLSerializer"],"XPathEvaluator":["XPathEvaluator"],"XPathEvaluatorBase":["createExpression"],"XPathExpression":["XPathExpression"],"XPathNSResolver":[],"XPathResult":["XPathResult"],"XSLTProcessor":["XSLTProcessor"]}'), Te = {
|
|
716
|
+
globals: ve
|
|
717
|
+
}, je = Object.freeze(
|
|
718
|
+
Object.assign(/* @__PURE__ */ Object.create(null), Te.globals)
|
|
719
|
+
), Xe = "https://developer.mozilla.org/docs/Web/API/";
|
|
720
|
+
function Qe(e, t, n, o, r, a) {
|
|
721
|
+
return `${`${t ? "export default " : "export "}${e ? "abstract " : ""}`}class ${n}${f(o)}${r === void 0 ? "" : ` extends ${r}`} {${a}}`;
|
|
722
|
+
}
|
|
723
|
+
function f(e) {
|
|
724
|
+
if (e === void 0)
|
|
725
|
+
return "";
|
|
726
|
+
let t = "<";
|
|
727
|
+
for (let n = 0; n < e.length; n++) {
|
|
728
|
+
const o = e[n];
|
|
729
|
+
o.const === !0 ? t += "const " : o.in === !0 ? t += "in " : o.out === !0 && (t += "out "), t += o.name, o.constraint !== void 0 && (t += ` extends ${o.constraint.text}`), o.default !== void 0 && (t += ` = ${o.default.text}`), n < e.length - 1 && (t += ", ");
|
|
730
|
+
}
|
|
731
|
+
return t += ">", t;
|
|
732
|
+
}
|
|
733
|
+
function Ye(e, t, n, o, r) {
|
|
734
|
+
const a = e ? "export default " : "export ";
|
|
735
|
+
let i = "";
|
|
736
|
+
if (o !== void 0) {
|
|
737
|
+
i = " extends ";
|
|
738
|
+
for (let s = 0; s < o.length; s++)
|
|
739
|
+
i += o[s], s < o.length - 1 && (i += ", ");
|
|
740
|
+
}
|
|
741
|
+
return `${a}interface ${t}${f(n)}${i} {${r}}`;
|
|
742
|
+
}
|
|
743
|
+
function Ze(e, t, n, o, r, a, i, s) {
|
|
744
|
+
const c = `${e ? "protected " : ""}${t ? "abstract " : ""}${n ? "static " : ""}`, p = s === void 0 ? "" : `: ${s}`;
|
|
745
|
+
return `${c}${r === "" ? "" : D(r)}${o ? "?" : ""}${f(a)}(${x(i)})${p};`;
|
|
746
|
+
}
|
|
747
|
+
function D(e) {
|
|
748
|
+
return he.test(e) || e.startsWith("[") ? e : `"${e.replaceAll("\\", "\\\\").replaceAll('"', '\\"')}"`;
|
|
749
|
+
}
|
|
750
|
+
const he = /^[A-Za-z_$][A-Za-z0-9_$]*$/u;
|
|
751
|
+
function et(e, t, n, o, r) {
|
|
752
|
+
return `${e ? "export default " : "export "}function ${t}${f(n)}(${x(o)}): ${r};`;
|
|
753
|
+
}
|
|
754
|
+
function tt(e) {
|
|
755
|
+
return `${f(e.typeParameters)}(${x(e.parameters)}): ${e.return.type.text}`;
|
|
756
|
+
}
|
|
757
|
+
function x(e) {
|
|
758
|
+
if (e === void 0)
|
|
759
|
+
return "";
|
|
760
|
+
let t = "";
|
|
761
|
+
for (let n = 0; n < e.length; n++) {
|
|
762
|
+
const o = e[n];
|
|
763
|
+
o.rest === !0 && (t += "..."), t += o.name, o.optional === !0 && (t += "?"), t += `: ${o.type.text}`, n < e.length - 1 && (t += ", ");
|
|
764
|
+
}
|
|
765
|
+
return t;
|
|
766
|
+
}
|
|
767
|
+
function nt(e, t, n, o, r, a, i, s) {
|
|
768
|
+
return `${`${e ? "protected " : ""}${t ? "abstract " : n ? "static " : ""}${o ? "readonly " : r ? "accessor " : ""}`}${D(i)}${a ? "?" : ""}: ${s};`;
|
|
769
|
+
}
|
|
770
|
+
function ot(e, t, n, o, r, a) {
|
|
771
|
+
const i = `${e ? "protected " : ""}${t ? "abstract " : ""}${n ? "static " : ""}`, s = D(o), c = a === void 0 ? "" : `
|
|
772
|
+
${i}set ${s}(value: ${a});`;
|
|
773
|
+
return `${i}get ${s}(): ${r};${c}`;
|
|
774
|
+
}
|
|
775
|
+
function rt(e, t, n) {
|
|
776
|
+
const r = `${e ? "declare " : "export "}const ${t}: ${n};`;
|
|
777
|
+
return e ? `${r}
|
|
778
|
+
export default ${t};` : r;
|
|
779
|
+
}
|
|
780
|
+
function at(e, t, n, o) {
|
|
781
|
+
let r = `export type ${e}${f(t)} = `;
|
|
782
|
+
if (n !== void 0)
|
|
783
|
+
for (let a = 0; a < n.length; a++)
|
|
784
|
+
r += n[a], (a < n.length - 1 || o !== void 0) && (r += `
|
|
785
|
+
& `);
|
|
786
|
+
return o !== void 0 && (r += o), r += ";", r;
|
|
265
787
|
}
|
|
266
788
|
export {
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
789
|
+
Ke as ApiExtractor,
|
|
790
|
+
F as alternativeDocumentationHost,
|
|
791
|
+
Z as apiExtractorDiagnosticContext,
|
|
792
|
+
g as apiExtractorError,
|
|
793
|
+
N as apiExtractorErrorCount,
|
|
794
|
+
h as apiExtractorJsDocError,
|
|
795
|
+
$e as apiMemberToNodeDoc,
|
|
796
|
+
ke as compareClassMembers,
|
|
797
|
+
Fe as compareNamedNodes,
|
|
798
|
+
K as compareStrings,
|
|
799
|
+
Be as extractBooleanInitializer,
|
|
800
|
+
Ne as findDecorator,
|
|
801
|
+
Ve as findReferenceRanges,
|
|
802
|
+
G as getApiMemberName,
|
|
803
|
+
_e as getApiNodeLabel,
|
|
804
|
+
ie as getBasename,
|
|
805
|
+
b as getMaybeStaticApiMemberName,
|
|
806
|
+
He as getMemberName,
|
|
807
|
+
qe as getNodeDoc,
|
|
808
|
+
Ae as globalPackageIdentifier,
|
|
809
|
+
We as hasIgnoredModifier,
|
|
810
|
+
De as isApiMethod,
|
|
811
|
+
xe as isApiProperty,
|
|
812
|
+
Ge as multipleJsDocTags,
|
|
813
|
+
ne as naturalSortModules,
|
|
814
|
+
ue as nodeDocToString,
|
|
815
|
+
ze as nodeDocToSynthesizedComment,
|
|
816
|
+
O as normalizedDocumentationHost,
|
|
817
|
+
Oe as postProcessLinks,
|
|
818
|
+
Qe as printClass,
|
|
819
|
+
et as printFunction,
|
|
820
|
+
ot as printGetterSetter,
|
|
821
|
+
Ye as printInterface,
|
|
822
|
+
Ze as printMethod,
|
|
823
|
+
nt as printProperty,
|
|
824
|
+
tt as printSignature,
|
|
825
|
+
at as printTypeAlias,
|
|
826
|
+
f as printTypeParameters,
|
|
827
|
+
rt as printVariable,
|
|
828
|
+
Ie as resetApiExtractorErrorCount,
|
|
829
|
+
ye as setApiDocFromJsDoc,
|
|
830
|
+
Je as setApiDocFromSymbol,
|
|
831
|
+
Pe as setApiExtractorErrorLogger,
|
|
832
|
+
we as setDefaultFromInitializer,
|
|
833
|
+
Ee as symbolToDocs,
|
|
834
|
+
je as typeScriptGlobals,
|
|
835
|
+
Xe as typeScriptGlobalsViewUrlCommonPrefix,
|
|
836
|
+
Ue as unsafeGetUndocumentedPrinter,
|
|
837
|
+
se as unsafeUndocumentedTs
|
|
285
838
|
};
|