@arcgis/api-extractor 5.0.0-next.1 → 5.0.0-next.100

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/index.js CHANGED
@@ -1,12 +1,66 @@
1
- import c from "typescript";
2
- import { path as P } from "@arcgis/components-build-utils";
3
- import { mappedFind as R } from "@arcgis/toolkit/array";
4
- const N = "@arcgis/api-extractor", K = "5.0.0-next.1", ye = (t) => t.kind === "method", Te = (t) => t.kind === "field";
5
- function W(t, e) {
6
- const n = t.path.split("/"), o = n.pop(), s = n.join("/"), r = e.path.split("/"), i = r.pop(), a = r.join("/");
7
- return s === a ? o < i ? -1 : 1 : s.startsWith(a) ? 1 : a.startsWith(s) || s < a ? -1 : 1;
8
- }
9
- const Se = "global:", G = /* @__PURE__ */ new Set([
1
+ import d from "typescript";
2
+ import z, { supportsColorStderr as q } from "chalk";
3
+ import { path as J } from "@arcgis/components-build-utils";
4
+ import { mappedFind as j } from "@arcgis/toolkit/array";
5
+ const X = "@arcgis/api-extractor", Q = "5.0.0-next.100", D = {
6
+ name: X,
7
+ version: Q
8
+ };
9
+ let G;
10
+ function Y(e) {
11
+ return G ??= d.createPrinter(), G.printNode(d.EmitHint.Unspecified, e, void 0);
12
+ }
13
+ function Z(e, t) {
14
+ return e.pos !== -1 && e.end !== -1 && t !== void 0 ? e.getText(t) : Y(e);
15
+ }
16
+ let B = 0;
17
+ function Pe(e = 0) {
18
+ B = e;
19
+ }
20
+ let K = console.error;
21
+ function De(e) {
22
+ K = e;
23
+ }
24
+ const ee = {
25
+ getCurrentDirectory: process.cwd,
26
+ getCanonicalFileName: (e) => e,
27
+ getNewLine: () => d.sys.newLine
28
+ };
29
+ function y(e, { file: t, node: n, scope: o, start: r, length: i }) {
30
+ B += 1, process.exitCode = 1, r ??= n === void 0 || n.pos === -1 ? -1 : n.getStart(t, !1);
31
+ const a = n?.end ?? -1;
32
+ i ??= a === -1 ? -1 : Math.max(1, a - r);
33
+ const s = r >= 0 && i >= 0, l = !s && o !== void 0, m = {
34
+ category: d.DiagnosticCategory.Error,
35
+ code: s ? D.name : te,
36
+ file: l ? void 0 : t,
37
+ start: s ? r : 0,
38
+ length: s ? i : 0,
39
+ messageText: (l ? `${z.cyan(o)}: ` : "") + e + (s || n === void 0 ? "" : `
40
+
41
+ ${Z(n, t)}`)
42
+ }, S = d.formatDiagnosticsWithColorAndContext([m], ee), c = q ? S : S.replaceAll(ne, "");
43
+ K(c);
44
+ }
45
+ const te = 1490, ne = /\x1B\[[0-9;]*m/gu, xe = (e) => e.kind === "method", Ae = (e) => e.kind === "field";
46
+ function oe(e, t) {
47
+ const n = e.sourcePath, o = t.sourcePath;
48
+ let r = 0;
49
+ for (; ; ) {
50
+ const i = n.indexOf("/", r), a = o.indexOf("/", r);
51
+ if (i === -1)
52
+ return a === -1 ? n.slice(r) < o.slice(r) ? -1 : 1 : -1;
53
+ if (a === -1)
54
+ return 1;
55
+ {
56
+ const s = n.slice(r, i), l = o.slice(r, a);
57
+ if (s !== l)
58
+ return s < l ? -1 : 1;
59
+ r = i + 1;
60
+ }
61
+ }
62
+ }
63
+ const Ge = "global:", Oe = /* @__PURE__ */ new Set([
10
64
  "example",
11
65
  "see",
12
66
  "param",
@@ -14,542 +68,772 @@ const Se = "global:", G = /* @__PURE__ */ new Set([
14
68
  "throws",
15
69
  "slot",
16
70
  "csspart",
17
- "cssstate"
18
- ]), v = 10, M = (t = 0) => (e) => `\x1B[${e + t}m`, k = (t = 0) => (e) => `\x1B[${38 + t};5;${e}m`, w = (t = 0) => (e, n, o) => `\x1B[${38 + t};2;${e};${n};${o}m`, l = {
19
- modifier: {
20
- reset: [0, 0],
21
- // 21 isn't widely supported and 22 does the same thing
22
- bold: [1, 22],
23
- dim: [2, 22],
24
- italic: [3, 23],
25
- underline: [4, 24],
26
- overline: [53, 55],
27
- inverse: [7, 27],
28
- hidden: [8, 28],
29
- strikethrough: [9, 29]
30
- },
31
- color: {
32
- black: [30, 39],
33
- red: [31, 39],
34
- green: [32, 39],
35
- yellow: [33, 39],
36
- blue: [34, 39],
37
- magenta: [35, 39],
38
- cyan: [36, 39],
39
- white: [37, 39],
40
- // Bright color
41
- blackBright: [90, 39],
42
- gray: [90, 39],
43
- // Alias of `blackBright`
44
- grey: [90, 39],
45
- // Alias of `blackBright`
46
- redBright: [91, 39],
47
- greenBright: [92, 39],
48
- yellowBright: [93, 39],
49
- blueBright: [94, 39],
50
- magentaBright: [95, 39],
51
- cyanBright: [96, 39],
52
- whiteBright: [97, 39]
53
- },
54
- bgColor: {
55
- bgBlack: [40, 49],
56
- bgRed: [41, 49],
57
- bgGreen: [42, 49],
58
- bgYellow: [43, 49],
59
- bgBlue: [44, 49],
60
- bgMagenta: [45, 49],
61
- bgCyan: [46, 49],
62
- bgWhite: [47, 49],
63
- // Bright color
64
- bgBlackBright: [100, 49],
65
- bgGray: [100, 49],
66
- // Alias of `bgBlackBright`
67
- bgGrey: [100, 49],
68
- // Alias of `bgBlackBright`
69
- bgRedBright: [101, 49],
70
- bgGreenBright: [102, 49],
71
- bgYellowBright: [103, 49],
72
- bgBlueBright: [104, 49],
73
- bgMagentaBright: [105, 49],
74
- bgCyanBright: [106, 49],
75
- bgWhiteBright: [107, 49]
76
- }
77
- };
78
- Object.keys(l.modifier);
79
- const V = Object.keys(l.color), Y = Object.keys(l.bgColor);
80
- [...V, ...Y];
81
- function J() {
82
- const t = /* @__PURE__ */ new Map();
83
- for (const [e, n] of Object.entries(l)) {
84
- for (const [o, s] of Object.entries(n))
85
- l[o] = {
86
- open: `\x1B[${s[0]}m`,
87
- close: `\x1B[${s[1]}m`
88
- }, n[o] = l[o], t.set(s[0], s[1]);
89
- Object.defineProperty(l, e, {
90
- value: n,
91
- enumerable: !1
92
- });
93
- }
94
- return Object.defineProperty(l, "codes", {
95
- value: t,
96
- enumerable: !1
97
- }), l.color.close = "\x1B[39m", l.bgColor.close = "\x1B[49m", l.color.ansi = M(), l.color.ansi256 = k(), l.color.ansi16m = w(), l.bgColor.ansi = M(v), l.bgColor.ansi256 = k(v), l.bgColor.ansi16m = w(v), Object.defineProperties(l, {
98
- rgbToAnsi256: {
99
- value(e, n, o) {
100
- return e === n && n === o ? e < 8 ? 16 : e > 248 ? 231 : Math.round((e - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(e / 255 * 5) + 6 * Math.round(n / 255 * 5) + Math.round(o / 255 * 5);
101
- },
102
- enumerable: !1
103
- },
104
- hexToRgb: {
105
- value(e) {
106
- const n = /[a-f\d]{6}|[a-f\d]{3}/i.exec(e.toString(16));
107
- if (!n)
108
- return [0, 0, 0];
109
- let [o] = n;
110
- o.length === 3 && (o = [...o].map((r) => r + r).join(""));
111
- const s = Number.parseInt(o, 16);
112
- return [
113
- /* eslint-disable no-bitwise */
114
- s >> 16 & 255,
115
- s >> 8 & 255,
116
- s & 255
117
- /* eslint-enable no-bitwise */
118
- ];
119
- },
120
- enumerable: !1
121
- },
122
- hexToAnsi256: {
123
- value: (e) => l.rgbToAnsi256(...l.hexToRgb(e)),
124
- enumerable: !1
125
- },
126
- ansi256ToAnsi: {
127
- value(e) {
128
- if (e < 8)
129
- return 30 + e;
130
- if (e < 16)
131
- return 90 + (e - 8);
132
- let n, o, s;
133
- if (e >= 232)
134
- n = ((e - 232) * 10 + 8) / 255, o = n, s = n;
135
- else {
136
- e -= 16;
137
- const a = e % 36;
138
- n = Math.floor(e / 36) / 5, o = Math.floor(a / 6) / 5, s = a % 6 / 5;
139
- }
140
- const r = Math.max(n, o, s) * 2;
141
- if (r === 0)
142
- return 30;
143
- let i = 30 + (Math.round(s) << 2 | Math.round(o) << 1 | Math.round(n));
144
- return r === 2 && (i += 60), i;
145
- },
146
- enumerable: !1
147
- },
148
- rgbToAnsi: {
149
- value: (e, n, o) => l.ansi256ToAnsi(l.rgbToAnsi256(e, n, o)),
150
- enumerable: !1
151
- },
152
- hexToAnsi: {
153
- value: (e) => l.ansi256ToAnsi(l.hexToAnsi256(e)),
154
- enumerable: !1
71
+ "cssstate",
72
+ "remarks",
73
+ "privateRemarks"
74
+ ]), re = /* @__PURE__ */ new Set(["example", "see"]);
75
+ function Fe(e, t) {
76
+ if (e.description && (e.description = e.description.replaceAll(b, t.resolveJsDocLink).replaceAll(t.alternativeDocumentationHost, t.normalizedDocumentationHost), e.description.includes("](.") && M(h, e.description, t)), e.docsTags !== void 0 && e.inheritedFrom === 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(b, t.resolveJsDocLink).replaceAll(t.alternativeDocumentationHost, t.normalizedDocumentationHost), o.text.includes("](.") && M(h, o.text, t));
155
80
  }
156
- }), l;
157
- }
158
- const d = J(), B = (() => {
159
- if (!("navigator" in globalThis))
160
- return 0;
161
- if (globalThis.navigator.userAgentData) {
162
- const t = navigator.userAgentData.brands.find(({ brand: e }) => e === "Chromium");
163
- if (t && t.version > 93)
164
- return 3;
165
- }
166
- return /\b(Chrome|Chromium)\//.test(globalThis.navigator.userAgent) ? 1 : 0;
167
- })(), j = B !== 0 && {
168
- level: B
169
- }, U = {
170
- stdout: j,
171
- stderr: j
172
- };
173
- function z(t, e, n) {
174
- let o = t.indexOf(e);
175
- if (o === -1)
176
- return t;
177
- const s = e.length;
178
- let r = 0, i = "";
179
- do
180
- i += t.slice(r, o) + e + n, r = o + s, o = t.indexOf(e, r);
181
- while (o !== -1);
182
- return i += t.slice(r), i;
183
- }
184
- function H(t, e, n, o) {
185
- let s = 0, r = "";
186
- do {
187
- const i = t[o - 1] === "\r";
188
- r += t.slice(s, i ? o - 1 : o) + e + (i ? `\r
189
- ` : `
190
- `) + n, s = o + 1, o = t.indexOf(`
191
- `, s);
192
- } while (o !== -1);
193
- return r += t.slice(s), r;
194
- }
195
- const { stdout: $, stderr: S } = U, A = Symbol("GENERATOR"), f = Symbol("STYLER"), h = Symbol("IS_EMPTY"), D = [
196
- "ansi",
197
- "ansi",
198
- "ansi256",
199
- "ansi16m"
200
- ], p = /* @__PURE__ */ Object.create(null), q = (t, e = {}) => {
201
- if (e.level && !(Number.isInteger(e.level) && e.level >= 0 && e.level <= 3))
202
- throw new Error("The `level` option should be an integer from 0 to 3");
203
- const n = $ ? $.level : 0;
204
- t.level = e.level === void 0 ? n : e.level;
205
- }, Q = (t) => {
206
- const e = (...n) => n.join(" ");
207
- return q(e, t), Object.setPrototypeOf(e, m.prototype), e;
208
- };
209
- function m(t) {
210
- return Q(t);
211
- }
212
- Object.setPrototypeOf(m.prototype, Function.prototype);
213
- for (const [t, e] of Object.entries(d))
214
- p[t] = {
215
- get() {
216
- const n = x(this, E(e.open, e.close, this[f]), this[h]);
217
- return Object.defineProperty(this, t, { value: n }), n;
218
- }
219
- };
220
- p.visible = {
221
- get() {
222
- const t = x(this, this[f], !0);
223
- return Object.defineProperty(this, "visible", { value: t }), t;
81
+ typeof e.deprecated == "string" && (e.deprecated = e.deprecated.replaceAll(b, t.resolveJsDocLink).replaceAll(t.alternativeDocumentationHost, t.normalizedDocumentationHost), e.deprecated.includes("](.") && M(h, e.deprecated, t));
82
+ }
83
+ const h = "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 M(e, t, n) {
85
+ const o = n.file?.text.indexOf(t) ?? -1;
86
+ y(`${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
+ });
93
+ }
94
+ const b = /\{@link +([^}]+)\}/gu, U = new Intl.Collator("en", { numeric: !0 }).compare, ke = (e, t) => U(e.name, t.name), Ve = (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 : U(e.name, t.name);
95
+ function _e(e, t) {
96
+ if (e.length === 0)
97
+ return;
98
+ const n = t.matchAll(ie), o = [];
99
+ for (const r of n) {
100
+ const i = e.find((a) => a.name === r[0]);
101
+ i !== void 0 && o.push({ ...i, start: r.index, end: r.index + i.name.length });
224
102
  }
225
- };
226
- const C = (t, e, n, ...o) => t === "rgb" ? e === "ansi16m" ? d[n].ansi16m(...o) : e === "ansi256" ? d[n].ansi256(d.rgbToAnsi256(...o)) : d[n].ansi(d.rgbToAnsi(...o)) : t === "hex" ? C("rgb", e, n, ...d.hexToRgb(...o)) : d[n][t](...o), X = ["rgb", "hex", "ansi256"];
227
- for (const t of X) {
228
- p[t] = {
229
- get() {
230
- const { level: n } = this;
231
- return function(...o) {
232
- const s = E(C(t, D[n], "color", ...o), d.color.close, this[f]);
233
- return x(this, s, this[h]);
234
- };
235
- }
236
- };
237
- const e = "bg" + t[0].toUpperCase() + t.slice(1);
238
- p[e] = {
239
- get() {
240
- const { level: n } = this;
241
- return function(...o) {
242
- const s = E(C(t, D[n], "bgColor", ...o), d.bgColor.close, this[f]);
243
- return x(this, s, this[h]);
244
- };
103
+ return o.length === 0 ? void 0 : o;
104
+ }
105
+ const ie = /"[^"]+"|'[^"]+'|\w+/gu, O = (e) => e.name ?? (e.kind === "constructor" ? "constructor" : "call-signature"), R = (e) => e.static === !0 ? `static ${O(e)}` : O(e), We = (e) => ("bubbles" in e ? "@" : "") + (e.name ?? (e.kind === "constructor" ? "constructor" : "")) + ("return" in e ? "()" : "");
106
+ function L(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 i = /* @__PURE__ */ new Set();
112
+ for (let a = 0; a < r.docsTags.length; a++)
113
+ i.add(r.docsTags[a].name);
114
+ for (let a = 0; a < o.length; a++) {
115
+ const s = o[a];
116
+ i.has(s.name) && !re.has(s.name) || r.docsTags.push(s);
245
117
  }
246
- };
118
+ }
247
119
  }
248
- const Z = Object.defineProperties(() => {
249
- }, {
250
- ...p,
251
- level: {
252
- enumerable: !0,
253
- get() {
254
- return this[A].level;
255
- },
256
- set(t) {
257
- this[A].level = t;
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 He(e, t, n) {
124
+ if (!t.default && "initializer" in e && e.initializer) {
125
+ const o = $(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 $(e) {
131
+ return d.isSatisfiesExpression(e) || d.isParenthesizedExpression(e) ? $(e.expression) : e;
132
+ }
133
+ function Ne(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}]`;
258
142
  }
259
143
  }
260
- }), E = (t, e, n) => {
261
- let o, s;
262
- return n === void 0 ? (o = t, s = e) : (o = n.openAll + t, s = e + n.closeAll), {
263
- open: t,
264
- close: e,
265
- openAll: o,
266
- closeAll: s,
267
- parent: n
268
- };
269
- }, x = (t, e, n) => {
270
- const o = (...s) => _(o, s.length === 1 ? "" + s[0] : s.join(" "));
271
- return Object.setPrototypeOf(o, Z), o[A] = t, o[f] = e, o[h] = n, o;
272
- }, _ = (t, e) => {
273
- if (t.level <= 0 || !e)
274
- return t[h] ? "" : e;
275
- let n = t[f];
276
- if (n === void 0)
277
- return e;
278
- const { openAll: o, closeAll: s } = n;
279
- if (e.includes("\x1B"))
280
- for (; n !== void 0; )
281
- e = z(e, n.close, n.open), n = n.parent;
282
- const r = e.indexOf(`
283
- `);
284
- return r !== -1 && (e = H(e, s, o, r)), o + e + s;
285
- };
286
- Object.defineProperties(m.prototype, p);
287
- const ee = m();
288
- m({ level: S ? S.level : 0 });
289
- const te = c.createPrinter();
290
- function ne(t) {
291
- return te.printNode(c.EmitHint.Unspecified, t, void 0);
292
- }
293
- function oe(t, e) {
294
- return t.pos !== -1 && t.end !== -1 && e !== void 0 ? t.getText(e) : ne(t);
295
- }
296
- let se = 0;
297
- const re = /* @__PURE__ */ new Set();
298
- let I = console.error;
299
- function Ae(t) {
300
- I = t;
301
- }
302
- const ie = {
303
- getCurrentDirectory: process.cwd,
304
- getCanonicalFileName: (t) => t,
305
- getNewLine: () => c.sys.newLine
306
- };
307
- function le(t, { file: e, node: n, scope: o, start: s, length: r }) {
308
- se += 1, process.exitCode = 1;
309
- const i = e?.fileName;
310
- i !== void 0 && re.add(i), s ??= n?.getStart(e, !1) ?? -1;
311
- const a = n?.end ?? -1;
312
- r ??= a === -1 ? -1 : Math.max(1, a - s);
313
- const u = s >= 0 && r >= 0, g = !u && o !== void 0, b = {
314
- category: c.DiagnosticCategory.Error,
315
- code: u ? N : ce,
316
- file: g ? void 0 : e,
317
- start: u ? s : 0,
318
- length: u ? r : 0,
319
- messageText: (g ? `${ee.cyan(o)}: ` : "") + t + (u || n === void 0 ? "" : `
320
-
321
- ${oe(n, e)}`)
322
- }, O = c.formatDiagnosticsWithColorAndContext([b], ie), F = S ? O : O.replaceAll(ae, "");
323
- I(F);
324
144
  }
325
- const ce = 1490, ae = /\x1B\[[0-9;]*m/gu;
326
- class Ce {
327
- constructor(e) {
328
- this.options = e;
145
+ const Be = ({ 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 Ke(e, t) {
150
+ return e.kind === d.SyntaxKind.TrueKeyword ? !0 : (e.kind === d.SyntaxKind.FalseKeyword || y(
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 se(e) {
159
+ const t = e.lastIndexOf("/"), n = e.indexOf(".", t === -1 ? 0 : t + 1);
160
+ return n === -1 ? e : e.slice(0, n);
161
+ }
162
+ const F = "developers.arcgis.com", k = "next.gha.afd.arcgis.com";
163
+ class Ue {
164
+ constructor(t) {
165
+ this.resolvedInheritance = /* @__PURE__ */ Object.create(null), this.noInheritMembers = {}, this.options = t, t.environment === "production" ? (this.normalizedDocumentationHost = F, this.alternativeDocumentationHost = k) : (this.normalizedDocumentationHost = k, this.alternativeDocumentationHost = F);
329
166
  }
330
167
  /** Given an array of TypeScript source files, generate an api.json file */
331
- extract(e) {
168
+ extract(t) {
332
169
  return {
333
170
  timestamp: (/* @__PURE__ */ new Date()).toISOString().split(".")[0],
334
171
  compiler: {
335
- name: N,
336
- version: K,
337
- typescriptVersion: c.version
172
+ name: D.name,
173
+ version: D.version,
174
+ typescriptVersion: d.version
338
175
  },
339
- schemaVersion: "1.0.0",
340
- modules: this.extractModules(e)
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)
341
180
  };
342
181
  }
343
- extractModules(e) {
182
+ extractModules(t) {
344
183
  const n = [];
345
- for (const o of e)
346
- this.file = o, n.push(this.extractModule(o));
347
- return this.options.isFullApiExtraction && n.sort(W), 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(oe), n;
348
189
  }
349
- extractModule(e) {
350
- const n = {
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 = J.relative(this.options.cwd, t.fileName), o = se(n)) {
196
+ const r = {
351
197
  kind: "javascript-module",
352
- path: P.relative(this.options.cwd, e.fileName),
353
- declarations: void 0,
354
- exports: void 0
198
+ path: o,
199
+ sourcePath: n,
200
+ declarations: [],
201
+ exports: []
355
202
  };
356
- this.apiModule = n;
357
- const o = this.extractDeclarations(e);
358
- if (n.declarations = o, this.options.isFullApiExtraction) {
359
- const s = this.inferExports(o);
360
- s.length > 0 && (n.exports = s);
361
- }
362
- return n;
203
+ return this.apiModule = r, this.extractDeclarations(t), r.exports.length === 0 && (r.exports = void 0), r;
363
204
  }
364
205
  /**
365
206
  * For a given module, extract all public declarations.
366
207
  */
367
- extractDeclarations(e) {
368
- const n = [];
369
- for (const o of e.statements) {
370
- const s = this.extractDeclaration(o);
371
- s !== void 0 && n.push(s);
208
+ extractDeclarations(t) {
209
+ const n = this.apiModule.declarations, o = t.statements;
210
+ for (let r = 0; r < o.length; r++) {
211
+ const i = o[r], a = this.extractDeclaration(i, r);
212
+ a !== void 0 && n.push(a);
372
213
  }
373
- return n;
374
214
  }
375
215
  /**
376
- * Infer ApiModule.exports based on ApiModule.declarations.
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.
377
220
  */
378
- inferExports(e) {
379
- const n = [];
380
- for (const o of e) {
381
- const s = this.inferExport(o);
382
- s !== void 0 && n.push(s);
383
- }
384
- return n;
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
+ });
385
229
  }
386
- copyDoc(e, n, o, s) {
387
- const r = o.docsTags?.findIndex((u) => u.name === "copyDoc");
388
- if (r === void 0 || r === -1)
230
+ copyDoc(t, n, o, r, i) {
231
+ if (o.docsTags === void 0 || n === void 0)
389
232
  return;
390
- n === void 0 && le("@copyDoc tag was used, but failed to find copyDoc definition for it.", {
391
- file: this.file,
392
- node: e
393
- });
394
- const i = n?.(o, s);
395
- if (i === void 0)
233
+ let a = 0;
234
+ for (; o.docsTags[a].name !== "copyDoc"; )
235
+ if (a += 1, a === o.docsTags.length)
236
+ return;
237
+ const s = o.name;
238
+ let l = n?.[s];
239
+ l === void 0 && y(
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 l == "function" && (l = l(o, r, i), l === void 0)) && L(
246
+ l,
247
+ o,
248
+ a
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)
396
261
  return;
397
- for (const [u, g] of Object.entries(i))
398
- u !== "docsTags" && (o[u] = o[u] ?? g);
399
- o.docsTags.splice(r, 1);
400
- const a = new Set(o.docsTags.map(({ name: u }) => u));
401
- for (const u of i.docsTags ?? [])
402
- a.has(u.name) && !G.has(u.name) || o.docsTags.push(u);
403
- o.docsTags.length === 0 && (o.docsTags = void 0);
262
+ this.resolvedInheritance[t] = void 0;
263
+ let i = !1;
264
+ if (n.members !== void 0)
265
+ for (let p = 0; p < n.members.length; p++) {
266
+ const u = n.members[p];
267
+ if (u.kind === "field") {
268
+ if (u.name === "@eventTypes") {
269
+ i = !0, this.handleEventTypesProperty(u, n, t), n.members.splice(p, 1), p -= 1;
270
+ continue;
271
+ }
272
+ u.inheritedFrom === void 0 && this.resolvePropertyAutoCastingType(u, t);
273
+ }
274
+ }
275
+ const a = n;
276
+ let s = n.mixins, l = a.superclass, m = l === void 0 ? void 0 : this.maybeResolveMixinBaseClass(l, t);
277
+ if (m?.supertypes !== void 0) {
278
+ s = s === void 0 ? [] : [...s];
279
+ do {
280
+ const p = m.supertypes.length > 1, u = p ? 1 : 0;
281
+ for (let C = m.supertypes.length - 1; C >= u; C--) {
282
+ const E = m.supertypes[C], v = E.module === void 0 ? { ...E, module: l.module } : E;
283
+ s.unshift(v);
284
+ }
285
+ l = p ? m.supertypes[0] : void 0, m = l === void 0 ? void 0 : this.maybeResolveMixinBaseClass(l, t);
286
+ } while (m?.supertypes !== void 0);
287
+ }
288
+ if (s !== void 0) {
289
+ const p = s.length - (n.mixins?.length ?? 0);
290
+ for (let u = s.length - 1; u >= 0; u--) {
291
+ const E = s[u].module ?? t, v = this.resolvedInheritance[E] ?? this.resolveInheritance(E, o, !0);
292
+ v !== !1 ? this.inheritMembersFrom(v, n, i) : u >= p && (n.mixins.splice(u - p, 1), n.mixins.length === 0 && (n.mixins = void 0));
293
+ }
294
+ }
295
+ if (l?.package !== void 0)
296
+ return;
297
+ const S = l?.module, c = S === void 0 ? !1 : this.resolvedInheritance[S] ?? this.resolveInheritance(S, o, !1);
298
+ c !== !1 && (this.inheritMembersFrom(c, n, i), l.module = c.inheritanceData.module);
299
+ }
300
+ /**
301
+ * Inherit members from a superclass or mixin.
302
+ */
303
+ inheritMembersFrom(t, n, o) {
304
+ const r = t.declaration, i = n;
305
+ if (t.indexedMembers !== void 0) {
306
+ n.members ??= [];
307
+ const a = n.members, s = this.noInheritMembers[t.inheritanceData.module];
308
+ let l = s === void 0 ? void 0 : new Set(s);
309
+ for (let S = 0; S < a.length; S++) {
310
+ const c = a[S], p = R(c), u = t.indexedMembers.get(p);
311
+ u === void 0 || (l ??= /* @__PURE__ */ new Set(), l.add(p), c.kind === "field" && this.maybePromotePropertyToAutoAccessor(c, u), u === void 0) || c.inheritedFrom === void 0 && L(u, c);
312
+ }
313
+ const m = r.members;
314
+ for (let S = 0; S < m.length; S++) {
315
+ const c = m[S];
316
+ // Most classes don't override any public members, so don't even check
317
+ // for this if no members were overridden.
318
+ (l?.has(R(c)) ?? !1) || n.members.push(
319
+ c.inheritedFrom === void 0 ? { ...c, inheritedFrom: t.inheritanceData } : c
320
+ );
321
+ }
322
+ }
323
+ !o && t.indexedEvents !== void 0 && (i.events = this.inheritMembersOfKind(
324
+ i.events,
325
+ r.events,
326
+ t.indexedEvents,
327
+ t.inheritanceData
328
+ )), t.indexedAttributes !== void 0 && (i.attributes = this.inheritMembersOfKind(
329
+ i.attributes,
330
+ r.attributes,
331
+ t.indexedAttributes,
332
+ t.inheritanceData
333
+ )), t.indexedSlots !== void 0 && (i.slots = this.inheritMembersOfKind(
334
+ i.slots,
335
+ r.slots,
336
+ t.indexedSlots
337
+ )), t.indexedCssParts !== void 0 && (i.cssParts = this.inheritMembersOfKind(
338
+ i.cssParts,
339
+ r.cssParts,
340
+ t.indexedCssParts
341
+ )), t.indexedCssProperties !== void 0 && (i.cssProperties = this.inheritMembersOfKind(
342
+ i.cssProperties,
343
+ r.cssProperties,
344
+ t.indexedCssProperties
345
+ )), t.indexedCssStates !== void 0 && (i.cssStates = this.inheritMembersOfKind(
346
+ i.cssStates,
347
+ r.cssStates,
348
+ t.indexedCssStates
349
+ ));
350
+ }
351
+ inheritMembersOfKind(t = [], n, o, r) {
352
+ const i = /* @__PURE__ */ new Set();
353
+ for (let a = 0; a < t.length; a++) {
354
+ const s = t[a], l = o[s.name];
355
+ l !== void 0 && (i.add(s.name), s.inheritedFrom === void 0 && L(l, s));
356
+ }
357
+ for (let a = 0; a < n.length; a++) {
358
+ const s = n[a];
359
+ i.has(s.name) || t.push(
360
+ r === void 0 || s.inheritedFrom !== void 0 ? s : { ...s, inheritedFrom: r }
361
+ );
362
+ }
363
+ return t;
364
+ }
365
+ /**
366
+ * Based on the superclass name, find the actual declaration in the modules.
367
+ */
368
+ resolveInheritance(t, n, o) {
369
+ const r = this.findSuperclassDeclaration(t, n, o);
370
+ if (r === !1)
371
+ return this.resolvedInheritance[t] = !1, !1;
372
+ const [i, a] = r, s = a;
373
+ this.inheritMembers(t, a, n);
374
+ let l, m = !1;
375
+ if (a.members !== void 0) {
376
+ l = /* @__PURE__ */ new Map();
377
+ for (let c = 0; c < a.members.length; c++) {
378
+ const p = a.members[c], u = R(p), E = l.get(u) !== void 0;
379
+ l.set(u, E ? void 0 : p), m ||= p.kind === "field" && p.readonly === void 0;
380
+ }
381
+ }
382
+ const S = {
383
+ inheritanceData: {
384
+ name: a.name,
385
+ module: i
386
+ },
387
+ declaration: a,
388
+ hasSettableField: m,
389
+ indexedMembers: l,
390
+ indexedEvents: f(a.events),
391
+ indexedAttributes: f(s.attributes),
392
+ indexedSlots: f(s.slots),
393
+ indexedCssParts: f(s.cssParts),
394
+ indexedCssProperties: f(s.cssProperties),
395
+ indexedCssStates: f(s.cssStates)
396
+ };
397
+ return this.resolvedInheritance[t] = S, S;
398
+ }
399
+ /**
400
+ * Overwrite point
401
+ *
402
+ * FINAL: jsapi-extractor has a more efficient implementation because it
403
+ * has to deal with inheritance a lot. Unify it with Lumina.
404
+ */
405
+ findSuperclassDeclaration(t, n, o) {
406
+ for (let r = 0; r < n.length; r++) {
407
+ const i = n[r];
408
+ if (i.path !== t)
409
+ continue;
410
+ const a = i.declarations;
411
+ for (let s = 0; s < a.length; s++) {
412
+ const l = a[s];
413
+ if (l.kind === "class")
414
+ return [i.path, l];
415
+ }
416
+ }
417
+ return !1;
418
+ }
419
+ handleEventTypesProperty(t, n, o) {
420
+ }
421
+ resolvePropertyAutoCastingType(t, n) {
422
+ }
423
+ /**
424
+ * This method should check if the super property is an accessor, then the
425
+ * override property should be promoted to an accessor too.
426
+ * This is necessary until we migrate to standard decorators since - after
427
+ * that internal accessor status will match the status in the public typings.
428
+ */
429
+ maybePromotePropertyToAutoAccessor(t, n) {
430
+ }
431
+ maybeResolveMixinBaseClass(t, n) {
404
432
  }
405
433
  }
406
- const Ee = (t) => t.modifiers?.some?.(
407
- (e) => e.kind === c.SyntaxKind.StaticKeyword || e.kind === c.SyntaxKind.PrivateKeyword || e.kind === c.SyntaxKind.ProtectedKeyword
408
- ) ?? !1;
409
- function Oe(t, e, n) {
410
- if (!e.default && "initializer" in t && t.initializer) {
411
- const o = L(t.initializer);
412
- ue(o) && (e.default = o.getText(n));
434
+ function f(e) {
435
+ if (e === void 0)
436
+ return;
437
+ const t = /* @__PURE__ */ Object.create(null);
438
+ for (let n = 0; n < e.length; n++) {
439
+ const o = e[n];
440
+ t[o.name] = o;
413
441
  }
442
+ return t;
414
443
  }
415
- const ue = (t) => c.isLiteralExpression(t) || t.kind === c.SyntaxKind.TrueKeyword || t.kind === c.SyntaxKind.FalseKeyword || c.isPrefixUnaryExpression(t) && c.isLiteralExpression(t.operand);
416
- function L(t) {
417
- return c.isSatisfiesExpression(t) || c.isParenthesizedExpression(t) ? L(t.expression) : t;
444
+ const T = d, le = T, V = 5, _ = 1, W = 1, w = 3, H = 4;
445
+ ce(T.createSourceMapGenerator);
446
+ de(T.createTextWriter);
447
+ me(T.getNewLineCharacter);
448
+ function ce(e) {
449
+ if (typeof e != "function")
450
+ throw Error(
451
+ "Failed to find ts.createSourceMapGenerator() function. Lumina needs to be updated to support the new TypeScript version"
452
+ );
453
+ if (e.length !== V)
454
+ throw Error(
455
+ `ts.createSourceMapGenerator() signature changed. Expected ${V} arguments. Lumina needs to be updated to support the new TypeScript version`
456
+ );
418
457
  }
419
- function Me(t) {
420
- if (t !== void 0 && (c.isIdentifier(t) || c.isStringLiteralLike(t)))
421
- return t.text;
458
+ function de(e) {
459
+ if (typeof e != "function")
460
+ throw Error(
461
+ "Failed to find ts.createTextWriter() function. Lumina needs to be updated to support the new TypeScript version"
462
+ );
463
+ if (e.length !== _)
464
+ throw Error(
465
+ `ts.createTextWriter() signature changed. Expected ${_} arguments. Lumina needs to be updated to support the new TypeScript version`
466
+ );
422
467
  }
423
- const ke = ({ modifiers: t = [] }, e) => R(
424
- t,
425
- (n) => c.isDecorator(n) && c.isCallExpression(n.expression) && c.isIdentifier(n.expression.expression) && n.expression.expression.text === e ? n.expression : void 0
426
- );
427
- function de(t, e) {
428
- const n = ge(e.getJsDocTags());
429
- let o = c.displayPartsToString(e.getDocumentationComment(t));
430
- const s = n.at(-1), r = s?.text?.indexOf(pe);
431
- if (r !== void 0 && r !== -1) {
432
- const i = s.text.indexOf(fe);
433
- i !== -1 && (o += s.text.slice(i), s.text = s.text?.slice(0, i));
434
- }
435
- return {
436
- docsTags: n,
437
- description: o || void 0
438
- };
468
+ function me(e) {
469
+ if (typeof e != "function")
470
+ throw Error(
471
+ "Failed to find ts.getNewLineCharacter() function. Lumina needs to be updated to support the new TypeScript version"
472
+ );
473
+ if (e.length !== W)
474
+ throw Error(
475
+ `ts.getNewLineCharacter() signature changed. Expected ${W} argument. Lumina needs to be updated to support the new TypeScript version`
476
+ );
439
477
  }
440
- const fe = `
441
-
442
- {@link `, pe = "Read more...}", ge = (t) => t.filter((e) => e.name !== "privateRemarks").map((e) => ({
443
- name: e.name,
444
- text: e.text?.map((n) => n.text).join("")
445
- }));
446
- function we(t) {
447
- const e = Array.from(t.docsTags ?? []), n = t, o = t;
448
- if (t.deprecated && e.push({
478
+ function pe(e) {
479
+ if (typeof e != "function")
480
+ throw Error(
481
+ "Failed to find ts.Printer.writeFile() function. Lumina needs to be updated to support the new TypeScript version"
482
+ );
483
+ if (e.length !== w)
484
+ throw Error(
485
+ `ts.Printer.writeFile() signature changed. Expected ${w} arguments. Lumina needs to be updated to support the new TypeScript version`
486
+ );
487
+ }
488
+ function ue(e) {
489
+ if (typeof e != "function")
490
+ throw Error(
491
+ "Failed to find ts.Printer.writeNode() function. Lumina needs to be updated to support the new TypeScript version"
492
+ );
493
+ if (e.length !== H)
494
+ throw Error(
495
+ `ts.Printer.writeNode() signature changed. Expected ${H} arguments. Lumina needs to be updated to support the new TypeScript version`
496
+ );
497
+ }
498
+ function $e(e, t) {
499
+ const n = le.createPrinter(e, t);
500
+ return pe(n.writeFile), ue(n.writeNode), n;
501
+ }
502
+ function ze(e) {
503
+ const t = [], n = e, o = e;
504
+ if (e.deprecated && t.push({
449
505
  name: "deprecated",
450
- text: t.deprecated === !0 ? void 0 : t.deprecated
451
- }), n.default && e.push({
506
+ text: e.deprecated === !0 ? void 0 : e.deprecated
507
+ }), n.default && t.push({
452
508
  name: "default",
453
509
  text: n.default
454
- }), o.cssParts)
455
- for (const r of o.cssParts)
456
- e.push({
457
- name: "csspart",
458
- text: T(r)
459
- });
460
- if (o.cssStates)
461
- for (const r of o.cssStates)
462
- e.push({
463
- name: "cssstate",
464
- text: T(r)
465
- });
466
- if (o.slots)
467
- for (const r of o.slots)
468
- e.push({
469
- name: "slot",
470
- text: T(r)
471
- });
472
- o.privacy === "private" && e.push({
510
+ }), o.return) {
511
+ const i = o.parameters;
512
+ if (i !== void 0)
513
+ for (let a = 0; a < i.length; a++) {
514
+ const s = i[a];
515
+ t.push({
516
+ name: "param",
517
+ text: `${s.name}${s.description ? ` - ${s.description}` : ""}`
518
+ });
519
+ }
520
+ o.return?.description && t.push({
521
+ name: "returns",
522
+ text: o.return.description
523
+ });
524
+ }
525
+ if ("customElement" in e) {
526
+ if (e.cssParts)
527
+ for (const i of e.cssParts)
528
+ t.push({
529
+ name: "csspart",
530
+ text: I(i)
531
+ });
532
+ if (e.cssStates)
533
+ for (const i of e.cssStates)
534
+ t.push({
535
+ name: "cssstate",
536
+ text: I(i)
537
+ });
538
+ if (e.slots)
539
+ for (const i of e.slots)
540
+ t.push({
541
+ name: "slot",
542
+ text: I(i)
543
+ });
544
+ }
545
+ n.privacy === "private" && t.push({
473
546
  name: "private",
474
547
  text: void 0
475
- });
476
- const s = t.description ?? "";
477
- return e.length === 0 && s.length === 0 ? [] : [he(s, e)];
548
+ }), e.docsTags !== void 0 && t.push(...e.docsTags);
549
+ const r = e.description ?? "";
550
+ if (!(t.length === 0 && r.length === 0))
551
+ return {
552
+ description: r,
553
+ docsTags: t
554
+ };
555
+ }
556
+ function I(e) {
557
+ const t = e.name + (e.default !== void 0 ? `=${e.default}` : ""), n = t.length > 0 ? `[${t}]` : "", o = e.description ?? "", r = o.length > 0 ? ` - ${o}` : "";
558
+ return `${n}${r}`;
559
+ }
560
+ function qe(e) {
561
+ return e === void 0 ? [] : [
562
+ {
563
+ kind: d.SyntaxKind.MultiLineCommentTrivia,
564
+ pos: -1,
565
+ end: -1,
566
+ text: Se(e),
567
+ hasTrailingNewLine: !0
568
+ }
569
+ ];
570
+ }
571
+ function Se(e) {
572
+ const t = e.description ?? "", n = t.length === 0, o = e.docsTags, r = (
573
+ // Has 2+ tags, or multi-line description, or single tag and single line description
574
+ o.length + (n ? 0 : t.includes(`
575
+ `) ? 2 : 1) > 1 || // Has a single tag, but that tag is multi-line
576
+ o[0]?.text?.includes(`
577
+ `) === !0
578
+ );
579
+ let i = "*";
580
+ n ? r || (i += " ") : (r ? (i += `
581
+ * `, i += N(t)) : i += ` ${t.replaceAll(" @", " \\@")}`, o.length > 0 && (i += `
582
+ *`));
583
+ for (let a = 0; a < o.length; a++) {
584
+ const s = o[a], l = `@${s.name}`, m = s.text ?? "";
585
+ i += `${r ? `
586
+ * ` : ""}${l}`, m.includes(`
587
+ `) ? (s.name === "returns" || s.name === "param" ? i += " " : i += `
588
+ * `, i += N(m)) : m.length > 0 && (i += ` ${m.replaceAll(" @", " \\@")}`);
589
+ }
590
+ return i += r ? `
591
+ ` : " ", i;
592
+ }
593
+ function N(e) {
594
+ let t = "";
595
+ for (let n = 0; n < e.length; n++) {
596
+ const o = e[n];
597
+ o === `
598
+ ` ? e[n + 1] === `
599
+ ` ? t += `
600
+ *` : t += `
601
+ * ` : o === "@" && (e[n - 1] === " " || e[n - 1] === `
602
+ ` || n === 0) ? t += "\\@" : t += o;
603
+ }
604
+ return t;
478
605
  }
479
- function he(t = "", e = []) {
606
+ function Je(e, t, n = !0) {
607
+ const o = d.getLeadingCommentRanges(t.text, e.pos);
608
+ if (o === void 0)
609
+ return;
610
+ let r;
611
+ for (const i of o) {
612
+ const a = t.text.slice(i.pos, i.end);
613
+ a.startsWith("/**") && (r !== void 0 && y(
614
+ `Found multiple JSDoc comments for the same node. This is not allowed.
615
+ 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
616
+ If this is meant to be a function overload, read the documentation: https://webgis.esri.com/webgis/core/core/documenting-api#function-overloads`,
617
+ {
618
+ file: t,
619
+ node: e
620
+ }
621
+ ), r = a);
622
+ }
623
+ if (r !== void 0 && !(n && !r.includes("* @public")))
624
+ return Ee(r, t, n);
625
+ }
626
+ function Ee(e, t, n = !1) {
627
+ const o = e.length - 2;
628
+ let r = 3, i = "";
629
+ const a = [];
630
+ let s, l = !n, m = !1;
631
+ for (; r < o; ) {
632
+ let S = e.indexOf(`
633
+ `, r);
634
+ S === -1 && (S = o);
635
+ let c = e.slice(r, S).trim();
636
+ if (r = S + 1, c === "*" ? c = "" : c.startsWith("*") && (c[1] === " " ? c = c.slice(2) : y(
637
+ `For consistency, include a space character after '*' in JSDoc. Did not find it in "${e}"`,
638
+ {
639
+ file: t,
640
+ node: void 0
641
+ }
642
+ )), c.startsWith("@")) {
643
+ s !== void 0 && !m && a.push({
644
+ name: s.name,
645
+ text: s.text.trim().replaceAll("\\@", "@") || void 0
646
+ });
647
+ const p = c.indexOf(" "), u = p === -1 ? c.slice(1) : c.slice(1, p), C = n && u === "public";
648
+ l ||= C, m = C || u === "privateRemarks";
649
+ const E = p === -1 ? "" : c.slice(p + 1);
650
+ s = {
651
+ name: u,
652
+ text: E
653
+ };
654
+ } else s !== void 0 ? s.text = `${s.text}
655
+ ${c}` : i += `${c}
656
+ `;
657
+ }
658
+ if (l)
659
+ return s !== void 0 && !m && a.push({
660
+ name: s.name,
661
+ text: s.text.trim().replaceAll("\\@", "@") || void 0
662
+ }), {
663
+ description: i.trim().replaceAll("\\@", "@") || void 0,
664
+ docsTags: a
665
+ };
666
+ }
667
+ function Ce(e, t) {
668
+ const n = ye(t.getJsDocTags());
669
+ let o = d.displayPartsToString(t.getDocumentationComment(e));
670
+ const r = n.at(-1), i = r?.text?.indexOf(ge);
671
+ if (i !== void 0 && i !== -1) {
672
+ const a = r.text.indexOf(fe);
673
+ a !== -1 && (o += r.text.slice(a), r.text = r.text?.slice(0, a));
674
+ }
480
675
  return {
481
- kind: c.SyntaxKind.MultiLineCommentTrivia,
482
- pos: -1,
483
- end: -1,
484
- text: me(t, e),
485
- hasTrailingNewLine: !0
676
+ description: o || void 0,
677
+ docsTags: n
486
678
  };
487
679
  }
488
- function me(t = "", e = []) {
489
- const n = t === "" ? [] : t.split(`
490
- `), s = n.length + e.length > 1 || (e.at(0)?.text?.includes(`
491
- `) ?? !1);
492
- return `*${s ? n.map((r) => `
493
- * ${r}`).join("") : ` ${t}`}${n.length > 0 && e.length > 0 ? `
494
- *` : ""}${e.map((r) => {
495
- const i = `@${r.name}`, a = r.text ?? "", u = r.text?.includes(`
496
- `) ?? !1;
497
- return `${s ? `
498
- * ` : ""}${i}${u ? a.split(`
499
- `).map((b) => `
500
- * ${b}`).join("") : a.length > 0 ? ` ${a}` : ""}`;
501
- }).join("")}${s ? `
502
- ` : ""} `;
503
- }
504
- function Be(t, e, n, o) {
505
- const s = e.getSymbolAtLocation(t);
506
- if (o ??= s === void 0 ? void 0 : de(e, s), o !== void 0) {
507
- for (const r of o.docsTags) {
508
- const { name: i, text: a } = r;
509
- i === "deprecated" ? n.deprecated = a || !0 : i === "default" ? n.default = a : i === "readonly" ? n.readonly = !0 : i === "private" ? n.privacy = "private" : i === "csspart" ? n.cssParts.push(y(a)) : i === "cssstate" ? n.cssStates.push(y(a)) : i === "slot" ? n.slots.push(y(a)) : (n.docsTags ??= [], n.docsTags.push(r));
510
- }
511
- n.description = o.description;
680
+ const fe = `
681
+
682
+ {@link `, ge = "Read more...}", ye = (e) => e.filter((t) => t.name !== "privateRemarks").map((t) => ({
683
+ name: t.name,
684
+ text: t.text?.map((n) => n.text).join("")
685
+ }));
686
+ function je(e, t, n) {
687
+ const o = t.getSymbolAtLocation(e), r = o === void 0 ? void 0 : Ce(t, o);
688
+ if (r !== void 0)
689
+ return ve(n, r);
690
+ }
691
+ function ve(e, t) {
692
+ for (const n of t.docsTags) {
693
+ const { name: o, text: r } = n;
694
+ 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(P(r)) : o === "cssstate" ? e.cssStates.push(P(r)) : o === "slot" ? e.slots.push(P(r)) : (e.docsTags ??= [], e.docsTags.push(n));
512
695
  }
696
+ e.description = t.description;
513
697
  }
514
- function y(t) {
515
- if (t === void 0)
698
+ function P(e) {
699
+ if (e === void 0)
516
700
  return { name: "" };
517
- const e = t.indexOf(" - ");
518
- if (e === -1)
519
- return t.startsWith("- ") ? { name: "", description: t.slice(2) } : { name: t };
520
- let n, o = t.slice(0, e);
701
+ const t = e.indexOf(" - ");
702
+ if (t === -1)
703
+ return e.startsWith("- ") ? { name: "", description: e.slice(2) } : { name: e };
704
+ let n, o = e.slice(0, t);
521
705
  if (o.startsWith("[") && o.endsWith("]")) {
522
- const r = o.slice(1, -1), i = r.indexOf("=");
523
- o = r.slice(0, i), n = r.slice(i + 1);
706
+ const i = o.slice(1, -1), a = i.indexOf("=");
707
+ o = i.slice(0, a), n = i.slice(a + 1);
524
708
  }
525
- const s = t.slice(e + 3);
709
+ const r = e.slice(t + 3);
526
710
  return {
527
711
  name: o,
528
712
  default: n,
529
- description: s
713
+ description: r
530
714
  };
531
715
  }
532
- function T(t) {
533
- const e = t.name + (t.default !== void 0 ? `=${t.default}` : ""), n = e.length > 0 ? `[${e}]` : "", o = t.description ?? "", s = o.length > 0 ? ` - ${o}` : "";
534
- return `${n}${s}`;
716
+ const Te = /* @__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"]}'), he = {
717
+ globals: Te
718
+ }, Xe = Object.freeze(
719
+ Object.assign(/* @__PURE__ */ Object.create(null), he.globals)
720
+ ), Qe = "https://developer.mozilla.org/docs/Web/API/";
721
+ function Ye(e, t, n, o, r, i) {
722
+ return `${`${t ? "export default " : "export "}${e ? "abstract " : ""}`}class ${n}${g(o)}${r === void 0 ? "" : ` extends ${r}`} {${i}}`;
723
+ }
724
+ function g(e) {
725
+ if (e === void 0)
726
+ return "";
727
+ let t = "<";
728
+ for (let n = 0; n < e.length; n++) {
729
+ const o = e[n];
730
+ 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 += ", ");
731
+ }
732
+ return t += ">", t;
733
+ }
734
+ function Ze(e, t, n, o, r) {
735
+ const i = e ? "export default " : "export ";
736
+ let a = "";
737
+ if (o !== void 0) {
738
+ a = " extends ";
739
+ for (let s = 0; s < o.length; s++)
740
+ a += o[s], s < o.length - 1 && (a += ", ");
741
+ }
742
+ return `${i}interface ${t}${g(n)}${a} {${r}}`;
743
+ }
744
+ function et(e, t, n, o, r, i, a, s) {
745
+ const l = `${e ? "protected " : ""}${t ? "abstract " : ""}${n ? "static " : ""}`, m = s === void 0 ? "" : `: ${s}`;
746
+ return `${l}${r === "" ? "" : x(r)}${o ? "?" : ""}${g(i)}(${A(a)})${m};`;
747
+ }
748
+ function x(e) {
749
+ return Me.test(e) || e.startsWith("[") ? e : `"${e.replaceAll("\\", "\\\\").replaceAll('"', '\\"')}"`;
750
+ }
751
+ const Me = /^[A-Za-z_$][A-Za-z0-9_$]*$/u;
752
+ function tt(e, t, n, o, r) {
753
+ return `${e ? "export default " : "export "}function ${t}${g(n)}(${A(o)}): ${r};`;
754
+ }
755
+ function nt(e) {
756
+ return `${g(e.typeParameters)}(${A(e.parameters)}): ${e.return.type.text}`;
757
+ }
758
+ function A(e) {
759
+ if (e === void 0)
760
+ return "";
761
+ let t = "";
762
+ for (let n = 0; n < e.length; n++) {
763
+ const o = e[n];
764
+ o.rest === !0 && (t += "..."), t += o.name, o.optional === !0 && (t += "?"), t += `: ${o.type.text}`, n < e.length - 1 && (t += ", ");
765
+ }
766
+ return t;
767
+ }
768
+ function ot(e, t, n, o, r, i, a, s) {
769
+ return `${`${e ? "protected " : ""}${t ? "abstract " : n ? "static " : ""}${o ? "readonly " : r ? "accessor " : ""}`}${x(a)}${i ? "?" : ""}: ${s};`;
770
+ }
771
+ function rt(e, t, n, o, r, i) {
772
+ const a = `${e ? "protected " : ""}${t ? "abstract " : ""}${n ? "static " : ""}`, s = x(o), l = i === void 0 ? "" : `
773
+ ${a}set ${s}(value: ${i});`;
774
+ return `${a}get ${s}(): ${r};${l}`;
775
+ }
776
+ function it(e, t, n) {
777
+ const r = `${e ? "declare " : "export "}const ${t}: ${n};`;
778
+ return e ? `${r}
779
+ export default ${t};` : r;
780
+ }
781
+ function at(e, t, n, o) {
782
+ let r = `export type ${e}${g(t)} = `;
783
+ if (n !== void 0)
784
+ for (let i = 0; i < n.length; i++)
785
+ r += n[i], (i < n.length - 1 || o !== void 0) && (r += `
786
+ & `);
787
+ return o !== void 0 && (r += o), r += ";", r;
535
788
  }
536
789
  export {
537
- Ce as ApiExtractor,
538
- le as apiExtractorError,
539
- se as apiExtractorErrorCount,
540
- re as apiExtractorErrorFiles,
541
- we as apiMemberToSynthesizedComments,
542
- oe as debugPrintNode,
543
- ke as findDecorator,
544
- Me as getMemberName,
545
- Se as globalPackageIdentifier,
546
- Ee as hasIgnoredModifier,
547
- ye as isApiMethod,
548
- Te as isApiProperty,
549
- G as multipleJsDocTags,
550
- ne as printNode,
551
- Be as setApiDocFromJsDoc,
552
- Ae as setApiExtractorErrorLogger,
553
- Oe as setDefaultFromInitializer,
554
- de as symbolToDocs
790
+ Ue as ApiExtractor,
791
+ k as alternativeDocumentationHost,
792
+ ee as apiExtractorDiagnosticContext,
793
+ y as apiExtractorError,
794
+ B as apiExtractorErrorCount,
795
+ M as apiExtractorJsDocError,
796
+ ze as apiMemberToNodeDoc,
797
+ Ve as compareClassMembers,
798
+ ke as compareNamedNodes,
799
+ U as compareStrings,
800
+ Ke as extractBooleanInitializer,
801
+ Be as findDecorator,
802
+ _e as findReferenceRanges,
803
+ O as getApiMemberName,
804
+ We as getApiNodeLabel,
805
+ se as getBasename,
806
+ R as getMaybeStaticApiMemberName,
807
+ Ne as getMemberName,
808
+ Je as getNodeDoc,
809
+ Ge as globalPackageIdentifier,
810
+ we as hasIgnoredModifier,
811
+ xe as isApiMethod,
812
+ Ae as isApiProperty,
813
+ Oe as multipleJsDocTags,
814
+ oe as naturalSortModules,
815
+ Se as nodeDocToString,
816
+ qe as nodeDocToSynthesizedComment,
817
+ F as normalizedDocumentationHost,
818
+ Fe as postProcessLinks,
819
+ Ye as printClass,
820
+ tt as printFunction,
821
+ rt as printGetterSetter,
822
+ Ze as printInterface,
823
+ et as printMethod,
824
+ ot as printProperty,
825
+ nt as printSignature,
826
+ at as printTypeAlias,
827
+ g as printTypeParameters,
828
+ it as printVariable,
829
+ Pe as resetApiExtractorErrorCount,
830
+ ve as setApiDocFromJsDoc,
831
+ je as setApiDocFromSymbol,
832
+ De as setApiExtractorErrorLogger,
833
+ He as setDefaultFromInitializer,
834
+ Ce as symbolToDocs,
835
+ Xe as typeScriptGlobals,
836
+ Qe as typeScriptGlobalsViewUrlCommonPrefix,
837
+ $e as unsafeGetUndocumentedPrinter,
838
+ le as unsafeUndocumentedTs
555
839
  };