surveysparrow-ionic-plugin 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/docs.json ADDED
@@ -0,0 +1,4485 @@
1
+ {
2
+ "api": {
3
+ "name": "SurveySparrowIonicPluginPlugin",
4
+ "slug": "surveysparrowionicpluginplugin",
5
+ "docs": "",
6
+ "tags": [],
7
+ "methods": [
8
+ {
9
+ "name": "loadFullScreenSurvey",
10
+ "signature": "(options: { domain: String; token: String; params: Array<Object>; properties: Object; }) => Promise<void>",
11
+ "parameters": [
12
+ {
13
+ "name": "options",
14
+ "docs": "",
15
+ "type": "{ domain: String; token: String; params: Object[]; properties: Object; }"
16
+ }
17
+ ],
18
+ "returns": "Promise<void>",
19
+ "tags": [],
20
+ "docs": "",
21
+ "complexTypes": [
22
+ "String",
23
+ "Array",
24
+ "Object"
25
+ ],
26
+ "slug": "loadfullscreensurvey"
27
+ },
28
+ {
29
+ "name": "loadFullScreenSurveyWithValidation",
30
+ "signature": "(options: { domain: String; token: String; params: Array<Object>; properties: Object; }) => Promise<void>",
31
+ "parameters": [
32
+ {
33
+ "name": "options",
34
+ "docs": "",
35
+ "type": "{ domain: String; token: String; params: Object[]; properties: Object; }"
36
+ }
37
+ ],
38
+ "returns": "Promise<void>",
39
+ "tags": [],
40
+ "docs": "",
41
+ "complexTypes": [
42
+ "String",
43
+ "Array",
44
+ "Object"
45
+ ],
46
+ "slug": "loadfullscreensurveywithvalidation"
47
+ }
48
+ ],
49
+ "properties": []
50
+ },
51
+ "interfaces": [
52
+ {
53
+ "name": "String",
54
+ "slug": "string",
55
+ "docs": "Allows manipulation and formatting of text strings and determination and location of substrings within strings.",
56
+ "tags": [],
57
+ "methods": [
58
+ {
59
+ "name": "toString",
60
+ "signature": "() => string",
61
+ "parameters": [],
62
+ "returns": "string",
63
+ "tags": [],
64
+ "docs": "Returns a string representation of a string.",
65
+ "complexTypes": [],
66
+ "slug": "tostring"
67
+ },
68
+ {
69
+ "name": "charAt",
70
+ "signature": "(pos: number) => string",
71
+ "parameters": [
72
+ {
73
+ "name": "pos",
74
+ "docs": "The zero-based index of the desired character.",
75
+ "type": "number"
76
+ }
77
+ ],
78
+ "returns": "string",
79
+ "tags": [
80
+ {
81
+ "name": "param",
82
+ "text": "pos The zero-based index of the desired character."
83
+ }
84
+ ],
85
+ "docs": "Returns the character at the specified index.",
86
+ "complexTypes": [],
87
+ "slug": "charat"
88
+ },
89
+ {
90
+ "name": "charCodeAt",
91
+ "signature": "(index: number) => number",
92
+ "parameters": [
93
+ {
94
+ "name": "index",
95
+ "docs": "The zero-based index of the desired character. If there is no character at the specified index, NaN is returned.",
96
+ "type": "number"
97
+ }
98
+ ],
99
+ "returns": "number",
100
+ "tags": [
101
+ {
102
+ "name": "param",
103
+ "text": "index The zero-based index of the desired character. If there is no character at the specified index, NaN is returned."
104
+ }
105
+ ],
106
+ "docs": "Returns the Unicode value of the character at the specified location.",
107
+ "complexTypes": [],
108
+ "slug": "charcodeat"
109
+ },
110
+ {
111
+ "name": "concat",
112
+ "signature": "(...strings: string[]) => string",
113
+ "parameters": [
114
+ {
115
+ "name": "strings",
116
+ "docs": "The strings to append to the end of the string.",
117
+ "type": "string[]"
118
+ }
119
+ ],
120
+ "returns": "string",
121
+ "tags": [
122
+ {
123
+ "name": "param",
124
+ "text": "strings The strings to append to the end of the string."
125
+ }
126
+ ],
127
+ "docs": "Returns a string that contains the concatenation of two or more strings.",
128
+ "complexTypes": [],
129
+ "slug": "concat"
130
+ },
131
+ {
132
+ "name": "indexOf",
133
+ "signature": "(searchString: string, position?: number | undefined) => number",
134
+ "parameters": [
135
+ {
136
+ "name": "searchString",
137
+ "docs": "The substring to search for in the string",
138
+ "type": "string"
139
+ },
140
+ {
141
+ "name": "position",
142
+ "docs": "The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.",
143
+ "type": "number | undefined"
144
+ }
145
+ ],
146
+ "returns": "number",
147
+ "tags": [
148
+ {
149
+ "name": "param",
150
+ "text": "searchString The substring to search for in the string"
151
+ },
152
+ {
153
+ "name": "param",
154
+ "text": "position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string."
155
+ }
156
+ ],
157
+ "docs": "Returns the position of the first occurrence of a substring.",
158
+ "complexTypes": [],
159
+ "slug": "indexof"
160
+ },
161
+ {
162
+ "name": "lastIndexOf",
163
+ "signature": "(searchString: string, position?: number | undefined) => number",
164
+ "parameters": [
165
+ {
166
+ "name": "searchString",
167
+ "docs": "The substring to search for.",
168
+ "type": "string"
169
+ },
170
+ {
171
+ "name": "position",
172
+ "docs": "The index at which to begin searching. If omitted, the search begins at the end of the string.",
173
+ "type": "number | undefined"
174
+ }
175
+ ],
176
+ "returns": "number",
177
+ "tags": [
178
+ {
179
+ "name": "param",
180
+ "text": "searchString The substring to search for."
181
+ },
182
+ {
183
+ "name": "param",
184
+ "text": "position The index at which to begin searching. If omitted, the search begins at the end of the string."
185
+ }
186
+ ],
187
+ "docs": "Returns the last occurrence of a substring in the string.",
188
+ "complexTypes": [],
189
+ "slug": "lastindexof"
190
+ },
191
+ {
192
+ "name": "localeCompare",
193
+ "signature": "(that: string) => number",
194
+ "parameters": [
195
+ {
196
+ "name": "that",
197
+ "docs": "String to compare to target string",
198
+ "type": "string"
199
+ }
200
+ ],
201
+ "returns": "number",
202
+ "tags": [
203
+ {
204
+ "name": "param",
205
+ "text": "that String to compare to target string"
206
+ }
207
+ ],
208
+ "docs": "Determines whether two strings are equivalent in the current locale.",
209
+ "complexTypes": [],
210
+ "slug": "localecompare"
211
+ },
212
+ {
213
+ "name": "match",
214
+ "signature": "(regexp: string | RegExp) => RegExpMatchArray | null",
215
+ "parameters": [
216
+ {
217
+ "name": "regexp",
218
+ "docs": "A variable name or string literal containing the regular expression pattern and flags.",
219
+ "type": "string | RegExp"
220
+ }
221
+ ],
222
+ "returns": "RegExpMatchArray | null",
223
+ "tags": [
224
+ {
225
+ "name": "param",
226
+ "text": "regexp A variable name or string literal containing the regular expression pattern and flags."
227
+ }
228
+ ],
229
+ "docs": "Matches a string with a regular expression, and returns an array containing the results of that search.",
230
+ "complexTypes": [
231
+ "RegExpMatchArray",
232
+ "RegExp"
233
+ ],
234
+ "slug": "match"
235
+ },
236
+ {
237
+ "name": "replace",
238
+ "signature": "(searchValue: string | RegExp, replaceValue: string) => string",
239
+ "parameters": [
240
+ {
241
+ "name": "searchValue",
242
+ "docs": "A string to search for.",
243
+ "type": "string | RegExp"
244
+ },
245
+ {
246
+ "name": "replaceValue",
247
+ "docs": "A string containing the text to replace for every successful match of searchValue in this string.",
248
+ "type": "string"
249
+ }
250
+ ],
251
+ "returns": "string",
252
+ "tags": [
253
+ {
254
+ "name": "param",
255
+ "text": "searchValue A string to search for."
256
+ },
257
+ {
258
+ "name": "param",
259
+ "text": "replaceValue A string containing the text to replace for every successful match of searchValue in this string."
260
+ }
261
+ ],
262
+ "docs": "Replaces text in a string, using a regular expression or search string.",
263
+ "complexTypes": [
264
+ "RegExp"
265
+ ],
266
+ "slug": "replace"
267
+ },
268
+ {
269
+ "name": "replace",
270
+ "signature": "(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string) => string",
271
+ "parameters": [
272
+ {
273
+ "name": "searchValue",
274
+ "docs": "A string to search for.",
275
+ "type": "string | RegExp"
276
+ },
277
+ {
278
+ "name": "replacer",
279
+ "docs": "A function that returns the replacement text.",
280
+ "type": "(substring: string, ...args: any[]) => string"
281
+ }
282
+ ],
283
+ "returns": "string",
284
+ "tags": [
285
+ {
286
+ "name": "param",
287
+ "text": "searchValue A string to search for."
288
+ },
289
+ {
290
+ "name": "param",
291
+ "text": "replacer A function that returns the replacement text."
292
+ }
293
+ ],
294
+ "docs": "Replaces text in a string, using a regular expression or search string.",
295
+ "complexTypes": [
296
+ "RegExp"
297
+ ],
298
+ "slug": "replace"
299
+ },
300
+ {
301
+ "name": "search",
302
+ "signature": "(regexp: string | RegExp) => number",
303
+ "parameters": [
304
+ {
305
+ "name": "regexp",
306
+ "docs": "The regular expression pattern and applicable flags.",
307
+ "type": "string | RegExp"
308
+ }
309
+ ],
310
+ "returns": "number",
311
+ "tags": [
312
+ {
313
+ "name": "param",
314
+ "text": "regexp The regular expression pattern and applicable flags."
315
+ }
316
+ ],
317
+ "docs": "Finds the first substring match in a regular expression search.",
318
+ "complexTypes": [
319
+ "RegExp"
320
+ ],
321
+ "slug": "search"
322
+ },
323
+ {
324
+ "name": "slice",
325
+ "signature": "(start?: number | undefined, end?: number | undefined) => string",
326
+ "parameters": [
327
+ {
328
+ "name": "start",
329
+ "docs": "The index to the beginning of the specified portion of stringObj.",
330
+ "type": "number | undefined"
331
+ },
332
+ {
333
+ "name": "end",
334
+ "docs": "The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\r\nIf this value is not specified, the substring continues to the end of stringObj.",
335
+ "type": "number | undefined"
336
+ }
337
+ ],
338
+ "returns": "string",
339
+ "tags": [
340
+ {
341
+ "name": "param",
342
+ "text": "start The index to the beginning of the specified portion of stringObj."
343
+ },
344
+ {
345
+ "name": "param",
346
+ "text": "end The index to the end of the specified portion of stringObj. The substring includes the characters up to, but not including, the character indicated by end.\r\nIf this value is not specified, the substring continues to the end of stringObj."
347
+ }
348
+ ],
349
+ "docs": "Returns a section of a string.",
350
+ "complexTypes": [],
351
+ "slug": "slice"
352
+ },
353
+ {
354
+ "name": "split",
355
+ "signature": "(separator: string | RegExp, limit?: number | undefined) => string[]",
356
+ "parameters": [
357
+ {
358
+ "name": "separator",
359
+ "docs": "A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned.",
360
+ "type": "string | RegExp"
361
+ },
362
+ {
363
+ "name": "limit",
364
+ "docs": "A value used to limit the number of elements returned in the array.",
365
+ "type": "number | undefined"
366
+ }
367
+ ],
368
+ "returns": "string[]",
369
+ "tags": [
370
+ {
371
+ "name": "param",
372
+ "text": "separator A string that identifies character or characters to use in separating the string. If omitted, a single-element array containing the entire string is returned."
373
+ },
374
+ {
375
+ "name": "param",
376
+ "text": "limit A value used to limit the number of elements returned in the array."
377
+ }
378
+ ],
379
+ "docs": "Split a string into substrings using the specified separator and return them as an array.",
380
+ "complexTypes": [
381
+ "RegExp"
382
+ ],
383
+ "slug": "split"
384
+ },
385
+ {
386
+ "name": "substring",
387
+ "signature": "(start: number, end?: number | undefined) => string",
388
+ "parameters": [
389
+ {
390
+ "name": "start",
391
+ "docs": "The zero-based index number indicating the beginning of the substring.",
392
+ "type": "number"
393
+ },
394
+ {
395
+ "name": "end",
396
+ "docs": "Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\r\nIf end is omitted, the characters from start through the end of the original string are returned.",
397
+ "type": "number | undefined"
398
+ }
399
+ ],
400
+ "returns": "string",
401
+ "tags": [
402
+ {
403
+ "name": "param",
404
+ "text": "start The zero-based index number indicating the beginning of the substring."
405
+ },
406
+ {
407
+ "name": "param",
408
+ "text": "end Zero-based index number indicating the end of the substring. The substring includes the characters up to, but not including, the character indicated by end.\r\nIf end is omitted, the characters from start through the end of the original string are returned."
409
+ }
410
+ ],
411
+ "docs": "Returns the substring at the specified location within a String object.",
412
+ "complexTypes": [],
413
+ "slug": "substring"
414
+ },
415
+ {
416
+ "name": "toLowerCase",
417
+ "signature": "() => string",
418
+ "parameters": [],
419
+ "returns": "string",
420
+ "tags": [],
421
+ "docs": "Converts all the alphabetic characters in a string to lowercase.",
422
+ "complexTypes": [],
423
+ "slug": "tolowercase"
424
+ },
425
+ {
426
+ "name": "toLocaleLowerCase",
427
+ "signature": "(locales?: string | string[] | undefined) => string",
428
+ "parameters": [
429
+ {
430
+ "name": "locales",
431
+ "docs": "",
432
+ "type": "string | string[] | undefined"
433
+ }
434
+ ],
435
+ "returns": "string",
436
+ "tags": [],
437
+ "docs": "Converts all alphabetic characters to lowercase, taking into account the host environment's current locale.",
438
+ "complexTypes": [],
439
+ "slug": "tolocalelowercase"
440
+ },
441
+ {
442
+ "name": "toUpperCase",
443
+ "signature": "() => string",
444
+ "parameters": [],
445
+ "returns": "string",
446
+ "tags": [],
447
+ "docs": "Converts all the alphabetic characters in a string to uppercase.",
448
+ "complexTypes": [],
449
+ "slug": "touppercase"
450
+ },
451
+ {
452
+ "name": "toLocaleUpperCase",
453
+ "signature": "(locales?: string | string[] | undefined) => string",
454
+ "parameters": [
455
+ {
456
+ "name": "locales",
457
+ "docs": "",
458
+ "type": "string | string[] | undefined"
459
+ }
460
+ ],
461
+ "returns": "string",
462
+ "tags": [],
463
+ "docs": "Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale.",
464
+ "complexTypes": [],
465
+ "slug": "tolocaleuppercase"
466
+ },
467
+ {
468
+ "name": "trim",
469
+ "signature": "() => string",
470
+ "parameters": [],
471
+ "returns": "string",
472
+ "tags": [],
473
+ "docs": "Removes the leading and trailing white space and line terminator characters from a string.",
474
+ "complexTypes": [],
475
+ "slug": "trim"
476
+ },
477
+ {
478
+ "name": "substr",
479
+ "signature": "(from: number, length?: number | undefined) => string",
480
+ "parameters": [
481
+ {
482
+ "name": "from",
483
+ "docs": "The starting position of the desired substring. The index of the first character in the string is zero.",
484
+ "type": "number"
485
+ },
486
+ {
487
+ "name": "length",
488
+ "docs": "The number of characters to include in the returned substring.",
489
+ "type": "number | undefined"
490
+ }
491
+ ],
492
+ "returns": "string",
493
+ "tags": [
494
+ {
495
+ "name": "param",
496
+ "text": "from The starting position of the desired substring. The index of the first character in the string is zero."
497
+ },
498
+ {
499
+ "name": "param",
500
+ "text": "length The number of characters to include in the returned substring."
501
+ }
502
+ ],
503
+ "docs": "Gets a substring beginning at the specified location and having the specified length.",
504
+ "complexTypes": [],
505
+ "slug": "substr"
506
+ },
507
+ {
508
+ "name": "valueOf",
509
+ "signature": "() => string",
510
+ "parameters": [],
511
+ "returns": "string",
512
+ "tags": [],
513
+ "docs": "Returns the primitive value of the specified object.",
514
+ "complexTypes": [],
515
+ "slug": "valueof"
516
+ }
517
+ ],
518
+ "properties": [
519
+ {
520
+ "name": "length",
521
+ "tags": [],
522
+ "docs": "Returns the length of a String object.",
523
+ "complexTypes": [],
524
+ "type": "number"
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "name": "RegExpMatchArray",
530
+ "slug": "regexpmatcharray",
531
+ "docs": "",
532
+ "tags": [],
533
+ "methods": [],
534
+ "properties": [
535
+ {
536
+ "name": "index",
537
+ "tags": [],
538
+ "docs": "",
539
+ "complexTypes": [],
540
+ "type": "number | undefined"
541
+ },
542
+ {
543
+ "name": "input",
544
+ "tags": [],
545
+ "docs": "",
546
+ "complexTypes": [],
547
+ "type": "string | undefined"
548
+ }
549
+ ]
550
+ },
551
+ {
552
+ "name": "RegExp",
553
+ "slug": "regexp",
554
+ "docs": "",
555
+ "tags": [],
556
+ "methods": [
557
+ {
558
+ "name": "exec",
559
+ "signature": "(string: string) => RegExpExecArray | null",
560
+ "parameters": [
561
+ {
562
+ "name": "string",
563
+ "docs": "The String object or string literal on which to perform the search.",
564
+ "type": "string"
565
+ }
566
+ ],
567
+ "returns": "RegExpExecArray | null",
568
+ "tags": [
569
+ {
570
+ "name": "param",
571
+ "text": "string The String object or string literal on which to perform the search."
572
+ }
573
+ ],
574
+ "docs": "Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search.",
575
+ "complexTypes": [
576
+ "RegExpExecArray"
577
+ ],
578
+ "slug": "exec"
579
+ },
580
+ {
581
+ "name": "test",
582
+ "signature": "(string: string) => boolean",
583
+ "parameters": [
584
+ {
585
+ "name": "string",
586
+ "docs": "String on which to perform the search.",
587
+ "type": "string"
588
+ }
589
+ ],
590
+ "returns": "boolean",
591
+ "tags": [
592
+ {
593
+ "name": "param",
594
+ "text": "string String on which to perform the search."
595
+ }
596
+ ],
597
+ "docs": "Returns a Boolean value that indicates whether or not a pattern exists in a searched string.",
598
+ "complexTypes": [],
599
+ "slug": "test"
600
+ },
601
+ {
602
+ "name": "compile",
603
+ "signature": "() => this",
604
+ "parameters": [],
605
+ "returns": "this",
606
+ "tags": [],
607
+ "docs": "",
608
+ "complexTypes": [],
609
+ "slug": "compile"
610
+ }
611
+ ],
612
+ "properties": [
613
+ {
614
+ "name": "source",
615
+ "tags": [],
616
+ "docs": "Returns a copy of the text of the regular expression pattern. Read-only. The regExp argument is a Regular expression object. It can be a variable name or a literal.",
617
+ "complexTypes": [],
618
+ "type": "string"
619
+ },
620
+ {
621
+ "name": "global",
622
+ "tags": [],
623
+ "docs": "Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only.",
624
+ "complexTypes": [],
625
+ "type": "boolean"
626
+ },
627
+ {
628
+ "name": "ignoreCase",
629
+ "tags": [],
630
+ "docs": "Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only.",
631
+ "complexTypes": [],
632
+ "type": "boolean"
633
+ },
634
+ {
635
+ "name": "multiline",
636
+ "tags": [],
637
+ "docs": "Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only.",
638
+ "complexTypes": [],
639
+ "type": "boolean"
640
+ },
641
+ {
642
+ "name": "lastIndex",
643
+ "tags": [],
644
+ "docs": "",
645
+ "complexTypes": [],
646
+ "type": "number"
647
+ }
648
+ ]
649
+ },
650
+ {
651
+ "name": "RegExpExecArray",
652
+ "slug": "regexpexecarray",
653
+ "docs": "",
654
+ "tags": [],
655
+ "methods": [],
656
+ "properties": [
657
+ {
658
+ "name": "index",
659
+ "tags": [],
660
+ "docs": "",
661
+ "complexTypes": [],
662
+ "type": "number"
663
+ },
664
+ {
665
+ "name": "input",
666
+ "tags": [],
667
+ "docs": "",
668
+ "complexTypes": [],
669
+ "type": "string"
670
+ }
671
+ ]
672
+ },
673
+ {
674
+ "name": "Array",
675
+ "slug": "array",
676
+ "docs": "",
677
+ "tags": [],
678
+ "methods": [
679
+ {
680
+ "name": "toString",
681
+ "signature": "() => string",
682
+ "parameters": [],
683
+ "returns": "string",
684
+ "tags": [],
685
+ "docs": "Returns a string representation of an array.",
686
+ "complexTypes": [],
687
+ "slug": "tostring"
688
+ },
689
+ {
690
+ "name": "toLocaleString",
691
+ "signature": "() => string",
692
+ "parameters": [],
693
+ "returns": "string",
694
+ "tags": [],
695
+ "docs": "Returns a string representation of an array. The elements are converted to string using their toLocalString methods.",
696
+ "complexTypes": [],
697
+ "slug": "tolocalestring"
698
+ },
699
+ {
700
+ "name": "pop",
701
+ "signature": "() => T | undefined",
702
+ "parameters": [],
703
+ "returns": "T | undefined",
704
+ "tags": [],
705
+ "docs": "Removes the last element from an array and returns it.\r\nIf the array is empty, undefined is returned and the array is not modified.",
706
+ "complexTypes": [
707
+ "T"
708
+ ],
709
+ "slug": "pop"
710
+ },
711
+ {
712
+ "name": "push",
713
+ "signature": "(...items: T[]) => number",
714
+ "parameters": [
715
+ {
716
+ "name": "items",
717
+ "docs": "New elements to add to the array.",
718
+ "type": "T[]"
719
+ }
720
+ ],
721
+ "returns": "number",
722
+ "tags": [
723
+ {
724
+ "name": "param",
725
+ "text": "items New elements to add to the array."
726
+ }
727
+ ],
728
+ "docs": "Appends new elements to the end of an array, and returns the new length of the array.",
729
+ "complexTypes": [
730
+ "T"
731
+ ],
732
+ "slug": "push"
733
+ },
734
+ {
735
+ "name": "concat",
736
+ "signature": "(...items: ConcatArray<T>[]) => T[]",
737
+ "parameters": [
738
+ {
739
+ "name": "items",
740
+ "docs": "Additional arrays and/or items to add to the end of the array.",
741
+ "type": "ConcatArray<T>[]"
742
+ }
743
+ ],
744
+ "returns": "T[]",
745
+ "tags": [
746
+ {
747
+ "name": "param",
748
+ "text": "items Additional arrays and/or items to add to the end of the array."
749
+ }
750
+ ],
751
+ "docs": "Combines two or more arrays.\r\nThis method returns a new array without modifying any existing arrays.",
752
+ "complexTypes": [
753
+ "T",
754
+ "ConcatArray"
755
+ ],
756
+ "slug": "concat"
757
+ },
758
+ {
759
+ "name": "concat",
760
+ "signature": "(...items: (T | ConcatArray<T>)[]) => T[]",
761
+ "parameters": [
762
+ {
763
+ "name": "items",
764
+ "docs": "Additional arrays and/or items to add to the end of the array.",
765
+ "type": "(T | ConcatArray<T>)[]"
766
+ }
767
+ ],
768
+ "returns": "T[]",
769
+ "tags": [
770
+ {
771
+ "name": "param",
772
+ "text": "items Additional arrays and/or items to add to the end of the array."
773
+ }
774
+ ],
775
+ "docs": "Combines two or more arrays.\r\nThis method returns a new array without modifying any existing arrays.",
776
+ "complexTypes": [
777
+ "T",
778
+ "ConcatArray"
779
+ ],
780
+ "slug": "concat"
781
+ },
782
+ {
783
+ "name": "join",
784
+ "signature": "(separator?: string | undefined) => string",
785
+ "parameters": [
786
+ {
787
+ "name": "separator",
788
+ "docs": "A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.",
789
+ "type": "string | undefined"
790
+ }
791
+ ],
792
+ "returns": "string",
793
+ "tags": [
794
+ {
795
+ "name": "param",
796
+ "text": "separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma."
797
+ }
798
+ ],
799
+ "docs": "Adds all the elements of an array into a string, separated by the specified separator string.",
800
+ "complexTypes": [],
801
+ "slug": "join"
802
+ },
803
+ {
804
+ "name": "reverse",
805
+ "signature": "() => T[]",
806
+ "parameters": [],
807
+ "returns": "T[]",
808
+ "tags": [],
809
+ "docs": "Reverses the elements in an array in place.\r\nThis method mutates the array and returns a reference to the same array.",
810
+ "complexTypes": [
811
+ "T"
812
+ ],
813
+ "slug": "reverse"
814
+ },
815
+ {
816
+ "name": "shift",
817
+ "signature": "() => T | undefined",
818
+ "parameters": [],
819
+ "returns": "T | undefined",
820
+ "tags": [],
821
+ "docs": "Removes the first element from an array and returns it.\r\nIf the array is empty, undefined is returned and the array is not modified.",
822
+ "complexTypes": [
823
+ "T"
824
+ ],
825
+ "slug": "shift"
826
+ },
827
+ {
828
+ "name": "slice",
829
+ "signature": "(start?: number | undefined, end?: number | undefined) => T[]",
830
+ "parameters": [
831
+ {
832
+ "name": "start",
833
+ "docs": "The beginning index of the specified portion of the array.\r\nIf start is undefined, then the slice begins at index 0.",
834
+ "type": "number | undefined"
835
+ },
836
+ {
837
+ "name": "end",
838
+ "docs": "The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\r\nIf end is undefined, then the slice extends to the end of the array.",
839
+ "type": "number | undefined"
840
+ }
841
+ ],
842
+ "returns": "T[]",
843
+ "tags": [
844
+ {
845
+ "name": "param",
846
+ "text": "start The beginning index of the specified portion of the array.\r\nIf start is undefined, then the slice begins at index 0."
847
+ },
848
+ {
849
+ "name": "param",
850
+ "text": "end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\r\nIf end is undefined, then the slice extends to the end of the array."
851
+ }
852
+ ],
853
+ "docs": "Returns a copy of a section of an array.\r\nFor both start and end, a negative index can be used to indicate an offset from the end of the array.\r\nFor example, -2 refers to the second to last element of the array.",
854
+ "complexTypes": [
855
+ "T"
856
+ ],
857
+ "slug": "slice"
858
+ },
859
+ {
860
+ "name": "sort",
861
+ "signature": "(compareFn?: ((a: T, b: T) => number) | undefined) => this",
862
+ "parameters": [
863
+ {
864
+ "name": "compareFn",
865
+ "docs": "Function used to determine the order of the elements. It is expected to return\r\na negative value if first argument is less than second argument, zero if they're equal and a positive\r\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\r\n```ts\r\n[11,2,22,1].sort((a, b) => a - b)\r\n```",
866
+ "type": "((a: T, b: T) => number) | undefined"
867
+ }
868
+ ],
869
+ "returns": "this",
870
+ "tags": [
871
+ {
872
+ "name": "param",
873
+ "text": "compareFn Function used to determine the order of the elements. It is expected to return\r\na negative value if first argument is less than second argument, zero if they're equal and a positive\r\nvalue otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\r\n```ts\r\n[11,2,22,1].sort((a, b) => a - b)\r\n```"
874
+ }
875
+ ],
876
+ "docs": "Sorts an array in place.\r\nThis method mutates the array and returns a reference to the same array.",
877
+ "complexTypes": [
878
+ "T"
879
+ ],
880
+ "slug": "sort"
881
+ },
882
+ {
883
+ "name": "splice",
884
+ "signature": "(start: number, deleteCount?: number | undefined) => T[]",
885
+ "parameters": [
886
+ {
887
+ "name": "start",
888
+ "docs": "The zero-based location in the array from which to start removing elements.",
889
+ "type": "number"
890
+ },
891
+ {
892
+ "name": "deleteCount",
893
+ "docs": "The number of elements to remove.",
894
+ "type": "number | undefined"
895
+ }
896
+ ],
897
+ "returns": "T[]",
898
+ "tags": [
899
+ {
900
+ "name": "param",
901
+ "text": "start The zero-based location in the array from which to start removing elements."
902
+ },
903
+ {
904
+ "name": "param",
905
+ "text": "deleteCount The number of elements to remove."
906
+ },
907
+ {
908
+ "name": "returns",
909
+ "text": "An array containing the elements that were deleted."
910
+ }
911
+ ],
912
+ "docs": "Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.",
913
+ "complexTypes": [
914
+ "T"
915
+ ],
916
+ "slug": "splice"
917
+ },
918
+ {
919
+ "name": "splice",
920
+ "signature": "(start: number, deleteCount: number, ...items: T[]) => T[]",
921
+ "parameters": [
922
+ {
923
+ "name": "start",
924
+ "docs": "The zero-based location in the array from which to start removing elements.",
925
+ "type": "number"
926
+ },
927
+ {
928
+ "name": "deleteCount",
929
+ "docs": "The number of elements to remove.",
930
+ "type": "number"
931
+ },
932
+ {
933
+ "name": "items",
934
+ "docs": "Elements to insert into the array in place of the deleted elements.",
935
+ "type": "T[]"
936
+ }
937
+ ],
938
+ "returns": "T[]",
939
+ "tags": [
940
+ {
941
+ "name": "param",
942
+ "text": "start The zero-based location in the array from which to start removing elements."
943
+ },
944
+ {
945
+ "name": "param",
946
+ "text": "deleteCount The number of elements to remove."
947
+ },
948
+ {
949
+ "name": "param",
950
+ "text": "items Elements to insert into the array in place of the deleted elements."
951
+ },
952
+ {
953
+ "name": "returns",
954
+ "text": "An array containing the elements that were deleted."
955
+ }
956
+ ],
957
+ "docs": "Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.",
958
+ "complexTypes": [
959
+ "T"
960
+ ],
961
+ "slug": "splice"
962
+ },
963
+ {
964
+ "name": "unshift",
965
+ "signature": "(...items: T[]) => number",
966
+ "parameters": [
967
+ {
968
+ "name": "items",
969
+ "docs": "Elements to insert at the start of the array.",
970
+ "type": "T[]"
971
+ }
972
+ ],
973
+ "returns": "number",
974
+ "tags": [
975
+ {
976
+ "name": "param",
977
+ "text": "items Elements to insert at the start of the array."
978
+ }
979
+ ],
980
+ "docs": "Inserts new elements at the start of an array, and returns the new length of the array.",
981
+ "complexTypes": [
982
+ "T"
983
+ ],
984
+ "slug": "unshift"
985
+ },
986
+ {
987
+ "name": "indexOf",
988
+ "signature": "(searchElement: T, fromIndex?: number | undefined) => number",
989
+ "parameters": [
990
+ {
991
+ "name": "searchElement",
992
+ "docs": "The value to locate in the array.",
993
+ "type": "T"
994
+ },
995
+ {
996
+ "name": "fromIndex",
997
+ "docs": "The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.",
998
+ "type": "number | undefined"
999
+ }
1000
+ ],
1001
+ "returns": "number",
1002
+ "tags": [
1003
+ {
1004
+ "name": "param",
1005
+ "text": "searchElement The value to locate in the array."
1006
+ },
1007
+ {
1008
+ "name": "param",
1009
+ "text": "fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."
1010
+ }
1011
+ ],
1012
+ "docs": "Returns the index of the first occurrence of a value in an array, or -1 if it is not present.",
1013
+ "complexTypes": [
1014
+ "T"
1015
+ ],
1016
+ "slug": "indexof"
1017
+ },
1018
+ {
1019
+ "name": "lastIndexOf",
1020
+ "signature": "(searchElement: T, fromIndex?: number | undefined) => number",
1021
+ "parameters": [
1022
+ {
1023
+ "name": "searchElement",
1024
+ "docs": "The value to locate in the array.",
1025
+ "type": "T"
1026
+ },
1027
+ {
1028
+ "name": "fromIndex",
1029
+ "docs": "The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.",
1030
+ "type": "number | undefined"
1031
+ }
1032
+ ],
1033
+ "returns": "number",
1034
+ "tags": [
1035
+ {
1036
+ "name": "param",
1037
+ "text": "searchElement The value to locate in the array."
1038
+ },
1039
+ {
1040
+ "name": "param",
1041
+ "text": "fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array."
1042
+ }
1043
+ ],
1044
+ "docs": "Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.",
1045
+ "complexTypes": [
1046
+ "T"
1047
+ ],
1048
+ "slug": "lastindexof"
1049
+ },
1050
+ {
1051
+ "name": "every",
1052
+ "signature": "<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any) => this is S[]",
1053
+ "parameters": [
1054
+ {
1055
+ "name": "predicate",
1056
+ "docs": "A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array.",
1057
+ "type": "(value: T, index: number, array: T[]) => value is S"
1058
+ },
1059
+ {
1060
+ "name": "thisArg",
1061
+ "docs": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.",
1062
+ "type": "any"
1063
+ }
1064
+ ],
1065
+ "returns": "boolean",
1066
+ "tags": [
1067
+ {
1068
+ "name": "param",
1069
+ "text": "predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."
1070
+ },
1071
+ {
1072
+ "name": "param",
1073
+ "text": "thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."
1074
+ }
1075
+ ],
1076
+ "docs": "Determines whether all the members of an array satisfy the specified test.",
1077
+ "complexTypes": [
1078
+ "T",
1079
+ "S"
1080
+ ],
1081
+ "slug": "every"
1082
+ },
1083
+ {
1084
+ "name": "every",
1085
+ "signature": "(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => boolean",
1086
+ "parameters": [
1087
+ {
1088
+ "name": "predicate",
1089
+ "docs": "A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array.",
1090
+ "type": "(value: T, index: number, array: T[]) => unknown"
1091
+ },
1092
+ {
1093
+ "name": "thisArg",
1094
+ "docs": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.",
1095
+ "type": "any"
1096
+ }
1097
+ ],
1098
+ "returns": "boolean",
1099
+ "tags": [
1100
+ {
1101
+ "name": "param",
1102
+ "text": "predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."
1103
+ },
1104
+ {
1105
+ "name": "param",
1106
+ "text": "thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."
1107
+ }
1108
+ ],
1109
+ "docs": "Determines whether all the members of an array satisfy the specified test.",
1110
+ "complexTypes": [
1111
+ "T"
1112
+ ],
1113
+ "slug": "every"
1114
+ },
1115
+ {
1116
+ "name": "some",
1117
+ "signature": "(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => boolean",
1118
+ "parameters": [
1119
+ {
1120
+ "name": "predicate",
1121
+ "docs": "A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array.",
1122
+ "type": "(value: T, index: number, array: T[]) => unknown"
1123
+ },
1124
+ {
1125
+ "name": "thisArg",
1126
+ "docs": "An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value.",
1127
+ "type": "any"
1128
+ }
1129
+ ],
1130
+ "returns": "boolean",
1131
+ "tags": [
1132
+ {
1133
+ "name": "param",
1134
+ "text": "predicate A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array."
1135
+ },
1136
+ {
1137
+ "name": "param",
1138
+ "text": "thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."
1139
+ }
1140
+ ],
1141
+ "docs": "Determines whether the specified callback function returns true for any element of an array.",
1142
+ "complexTypes": [
1143
+ "T"
1144
+ ],
1145
+ "slug": "some"
1146
+ },
1147
+ {
1148
+ "name": "forEach",
1149
+ "signature": "(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any) => void",
1150
+ "parameters": [
1151
+ {
1152
+ "name": "callbackfn",
1153
+ "docs": "A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.",
1154
+ "type": "(value: T, index: number, array: T[]) => void"
1155
+ },
1156
+ {
1157
+ "name": "thisArg",
1158
+ "docs": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",
1159
+ "type": "any"
1160
+ }
1161
+ ],
1162
+ "returns": "void",
1163
+ "tags": [
1164
+ {
1165
+ "name": "param",
1166
+ "text": "callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."
1167
+ },
1168
+ {
1169
+ "name": "param",
1170
+ "text": "thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
1171
+ }
1172
+ ],
1173
+ "docs": "Performs the specified action for each element in an array.",
1174
+ "complexTypes": [
1175
+ "T"
1176
+ ],
1177
+ "slug": "foreach"
1178
+ },
1179
+ {
1180
+ "name": "map",
1181
+ "signature": "<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any) => U[]",
1182
+ "parameters": [
1183
+ {
1184
+ "name": "callbackfn",
1185
+ "docs": "A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.",
1186
+ "type": "(value: T, index: number, array: T[]) => U"
1187
+ },
1188
+ {
1189
+ "name": "thisArg",
1190
+ "docs": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.",
1191
+ "type": "any"
1192
+ }
1193
+ ],
1194
+ "returns": "U[]",
1195
+ "tags": [
1196
+ {
1197
+ "name": "param",
1198
+ "text": "callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."
1199
+ },
1200
+ {
1201
+ "name": "param",
1202
+ "text": "thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
1203
+ }
1204
+ ],
1205
+ "docs": "Calls a defined callback function on each element of an array, and returns an array that contains the results.",
1206
+ "complexTypes": [
1207
+ "U",
1208
+ "T"
1209
+ ],
1210
+ "slug": "map"
1211
+ },
1212
+ {
1213
+ "name": "filter",
1214
+ "signature": "<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any) => S[]",
1215
+ "parameters": [
1216
+ {
1217
+ "name": "predicate",
1218
+ "docs": "A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.",
1219
+ "type": "(value: T, index: number, array: T[]) => value is S"
1220
+ },
1221
+ {
1222
+ "name": "thisArg",
1223
+ "docs": "An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.",
1224
+ "type": "any"
1225
+ }
1226
+ ],
1227
+ "returns": "S[]",
1228
+ "tags": [
1229
+ {
1230
+ "name": "param",
1231
+ "text": "predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."
1232
+ },
1233
+ {
1234
+ "name": "param",
1235
+ "text": "thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."
1236
+ }
1237
+ ],
1238
+ "docs": "Returns the elements of an array that meet the condition specified in a callback function.",
1239
+ "complexTypes": [
1240
+ "S",
1241
+ "T"
1242
+ ],
1243
+ "slug": "filter"
1244
+ },
1245
+ {
1246
+ "name": "filter",
1247
+ "signature": "(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any) => T[]",
1248
+ "parameters": [
1249
+ {
1250
+ "name": "predicate",
1251
+ "docs": "A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.",
1252
+ "type": "(value: T, index: number, array: T[]) => unknown"
1253
+ },
1254
+ {
1255
+ "name": "thisArg",
1256
+ "docs": "An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.",
1257
+ "type": "any"
1258
+ }
1259
+ ],
1260
+ "returns": "T[]",
1261
+ "tags": [
1262
+ {
1263
+ "name": "param",
1264
+ "text": "predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."
1265
+ },
1266
+ {
1267
+ "name": "param",
1268
+ "text": "thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."
1269
+ }
1270
+ ],
1271
+ "docs": "Returns the elements of an array that meet the condition specified in a callback function.",
1272
+ "complexTypes": [
1273
+ "T"
1274
+ ],
1275
+ "slug": "filter"
1276
+ },
1277
+ {
1278
+ "name": "reduce",
1279
+ "signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T) => T",
1280
+ "parameters": [
1281
+ {
1282
+ "name": "callbackfn",
1283
+ "docs": "A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.",
1284
+ "type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
1285
+ }
1286
+ ],
1287
+ "returns": "T",
1288
+ "tags": [
1289
+ {
1290
+ "name": "param",
1291
+ "text": "callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."
1292
+ },
1293
+ {
1294
+ "name": "param",
1295
+ "text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
1296
+ }
1297
+ ],
1298
+ "docs": "Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
1299
+ "complexTypes": [
1300
+ "T"
1301
+ ],
1302
+ "slug": "reduce"
1303
+ },
1304
+ {
1305
+ "name": "reduce",
1306
+ "signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T) => T",
1307
+ "parameters": [
1308
+ {
1309
+ "name": "callbackfn",
1310
+ "docs": "",
1311
+ "type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
1312
+ },
1313
+ {
1314
+ "name": "initialValue",
1315
+ "docs": "",
1316
+ "type": "T"
1317
+ }
1318
+ ],
1319
+ "returns": "T",
1320
+ "tags": [],
1321
+ "docs": "",
1322
+ "complexTypes": [
1323
+ "T"
1324
+ ],
1325
+ "slug": "reduce"
1326
+ },
1327
+ {
1328
+ "name": "reduce",
1329
+ "signature": "<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U) => U",
1330
+ "parameters": [
1331
+ {
1332
+ "name": "callbackfn",
1333
+ "docs": "A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.",
1334
+ "type": "(previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U"
1335
+ },
1336
+ {
1337
+ "name": "initialValue",
1338
+ "docs": "If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",
1339
+ "type": "U"
1340
+ }
1341
+ ],
1342
+ "returns": "U",
1343
+ "tags": [
1344
+ {
1345
+ "name": "param",
1346
+ "text": "callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."
1347
+ },
1348
+ {
1349
+ "name": "param",
1350
+ "text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
1351
+ }
1352
+ ],
1353
+ "docs": "Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
1354
+ "complexTypes": [
1355
+ "U",
1356
+ "T"
1357
+ ],
1358
+ "slug": "reduce"
1359
+ },
1360
+ {
1361
+ "name": "reduceRight",
1362
+ "signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T) => T",
1363
+ "parameters": [
1364
+ {
1365
+ "name": "callbackfn",
1366
+ "docs": "A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.",
1367
+ "type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
1368
+ }
1369
+ ],
1370
+ "returns": "T",
1371
+ "tags": [
1372
+ {
1373
+ "name": "param",
1374
+ "text": "callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."
1375
+ },
1376
+ {
1377
+ "name": "param",
1378
+ "text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
1379
+ }
1380
+ ],
1381
+ "docs": "Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
1382
+ "complexTypes": [
1383
+ "T"
1384
+ ],
1385
+ "slug": "reduceright"
1386
+ },
1387
+ {
1388
+ "name": "reduceRight",
1389
+ "signature": "(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T) => T",
1390
+ "parameters": [
1391
+ {
1392
+ "name": "callbackfn",
1393
+ "docs": "",
1394
+ "type": "(previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T"
1395
+ },
1396
+ {
1397
+ "name": "initialValue",
1398
+ "docs": "",
1399
+ "type": "T"
1400
+ }
1401
+ ],
1402
+ "returns": "T",
1403
+ "tags": [],
1404
+ "docs": "",
1405
+ "complexTypes": [
1406
+ "T"
1407
+ ],
1408
+ "slug": "reduceright"
1409
+ },
1410
+ {
1411
+ "name": "reduceRight",
1412
+ "signature": "<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U) => U",
1413
+ "parameters": [
1414
+ {
1415
+ "name": "callbackfn",
1416
+ "docs": "A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.",
1417
+ "type": "(previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U"
1418
+ },
1419
+ {
1420
+ "name": "initialValue",
1421
+ "docs": "If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",
1422
+ "type": "U"
1423
+ }
1424
+ ],
1425
+ "returns": "U",
1426
+ "tags": [
1427
+ {
1428
+ "name": "param",
1429
+ "text": "callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."
1430
+ },
1431
+ {
1432
+ "name": "param",
1433
+ "text": "initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
1434
+ }
1435
+ ],
1436
+ "docs": "Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
1437
+ "complexTypes": [
1438
+ "U",
1439
+ "T"
1440
+ ],
1441
+ "slug": "reduceright"
1442
+ }
1443
+ ],
1444
+ "properties": [
1445
+ {
1446
+ "name": "length",
1447
+ "tags": [],
1448
+ "docs": "Gets or sets the length of the array. This is a number one higher than the highest index in the array.",
1449
+ "complexTypes": [],
1450
+ "type": "number"
1451
+ }
1452
+ ]
1453
+ },
1454
+ {
1455
+ "name": "ConcatArray",
1456
+ "slug": "concatarray",
1457
+ "docs": "",
1458
+ "tags": [],
1459
+ "methods": [
1460
+ {
1461
+ "name": "join",
1462
+ "signature": "(separator?: string | undefined) => string",
1463
+ "parameters": [
1464
+ {
1465
+ "name": "separator",
1466
+ "docs": "",
1467
+ "type": "string | undefined"
1468
+ }
1469
+ ],
1470
+ "returns": "string",
1471
+ "tags": [],
1472
+ "docs": "",
1473
+ "complexTypes": [],
1474
+ "slug": "join"
1475
+ },
1476
+ {
1477
+ "name": "slice",
1478
+ "signature": "(start?: number | undefined, end?: number | undefined) => T[]",
1479
+ "parameters": [
1480
+ {
1481
+ "name": "start",
1482
+ "docs": "",
1483
+ "type": "number | undefined"
1484
+ },
1485
+ {
1486
+ "name": "end",
1487
+ "docs": "",
1488
+ "type": "number | undefined"
1489
+ }
1490
+ ],
1491
+ "returns": "T[]",
1492
+ "tags": [],
1493
+ "docs": "",
1494
+ "complexTypes": [
1495
+ "T"
1496
+ ],
1497
+ "slug": "slice"
1498
+ }
1499
+ ],
1500
+ "properties": [
1501
+ {
1502
+ "name": "length",
1503
+ "tags": [],
1504
+ "docs": "",
1505
+ "complexTypes": [],
1506
+ "type": "number"
1507
+ }
1508
+ ]
1509
+ },
1510
+ {
1511
+ "name": "Object",
1512
+ "slug": "object",
1513
+ "docs": "Provides functionality common to all JavaScript objects.",
1514
+ "tags": [],
1515
+ "methods": [
1516
+ {
1517
+ "name": "toString",
1518
+ "signature": "() => string",
1519
+ "parameters": [],
1520
+ "returns": "string",
1521
+ "tags": [],
1522
+ "docs": "Returns a string representation of an object.",
1523
+ "complexTypes": [],
1524
+ "slug": "tostring"
1525
+ },
1526
+ {
1527
+ "name": "toLocaleString",
1528
+ "signature": "() => string",
1529
+ "parameters": [],
1530
+ "returns": "string",
1531
+ "tags": [],
1532
+ "docs": "Returns a date converted to a string using the current locale.",
1533
+ "complexTypes": [],
1534
+ "slug": "tolocalestring"
1535
+ },
1536
+ {
1537
+ "name": "valueOf",
1538
+ "signature": "() => Object",
1539
+ "parameters": [],
1540
+ "returns": "Object",
1541
+ "tags": [],
1542
+ "docs": "Returns the primitive value of the specified object.",
1543
+ "complexTypes": [
1544
+ "Object"
1545
+ ],
1546
+ "slug": "valueof"
1547
+ },
1548
+ {
1549
+ "name": "hasOwnProperty",
1550
+ "signature": "(v: PropertyKey) => boolean",
1551
+ "parameters": [
1552
+ {
1553
+ "name": "v",
1554
+ "docs": "A property name.",
1555
+ "type": "PropertyKey"
1556
+ }
1557
+ ],
1558
+ "returns": "boolean",
1559
+ "tags": [
1560
+ {
1561
+ "name": "param",
1562
+ "text": "v A property name."
1563
+ }
1564
+ ],
1565
+ "docs": "Determines whether an object has a property with the specified name.",
1566
+ "complexTypes": [
1567
+ "PropertyKey"
1568
+ ],
1569
+ "slug": "hasownproperty"
1570
+ },
1571
+ {
1572
+ "name": "isPrototypeOf",
1573
+ "signature": "(v: Object) => boolean",
1574
+ "parameters": [
1575
+ {
1576
+ "name": "v",
1577
+ "docs": "Another object whose prototype chain is to be checked.",
1578
+ "type": "Object"
1579
+ }
1580
+ ],
1581
+ "returns": "boolean",
1582
+ "tags": [
1583
+ {
1584
+ "name": "param",
1585
+ "text": "v Another object whose prototype chain is to be checked."
1586
+ }
1587
+ ],
1588
+ "docs": "Determines whether an object exists in another object's prototype chain.",
1589
+ "complexTypes": [
1590
+ "Object"
1591
+ ],
1592
+ "slug": "isprototypeof"
1593
+ },
1594
+ {
1595
+ "name": "propertyIsEnumerable",
1596
+ "signature": "(v: PropertyKey) => boolean",
1597
+ "parameters": [
1598
+ {
1599
+ "name": "v",
1600
+ "docs": "A property name.",
1601
+ "type": "PropertyKey"
1602
+ }
1603
+ ],
1604
+ "returns": "boolean",
1605
+ "tags": [
1606
+ {
1607
+ "name": "param",
1608
+ "text": "v A property name."
1609
+ }
1610
+ ],
1611
+ "docs": "Determines whether a specified property is enumerable.",
1612
+ "complexTypes": [
1613
+ "PropertyKey"
1614
+ ],
1615
+ "slug": "propertyisenumerable"
1616
+ }
1617
+ ],
1618
+ "properties": [
1619
+ {
1620
+ "name": "constructor",
1621
+ "tags": [],
1622
+ "docs": "The initial value of Object.prototype.constructor is the standard built-in Object constructor.",
1623
+ "complexTypes": [
1624
+ "Function"
1625
+ ],
1626
+ "type": "Function"
1627
+ }
1628
+ ]
1629
+ },
1630
+ {
1631
+ "name": "Function",
1632
+ "slug": "function",
1633
+ "docs": "Creates a new function.",
1634
+ "tags": [],
1635
+ "methods": [
1636
+ {
1637
+ "name": "apply",
1638
+ "signature": "(this: Function, thisArg: any, argArray?: any) => any",
1639
+ "parameters": [
1640
+ {
1641
+ "name": "thisArg",
1642
+ "docs": "The object to be used as the this object.",
1643
+ "type": "any"
1644
+ },
1645
+ {
1646
+ "name": "argArray",
1647
+ "docs": "A set of arguments to be passed to the function.",
1648
+ "type": "any"
1649
+ }
1650
+ ],
1651
+ "returns": "any",
1652
+ "tags": [
1653
+ {
1654
+ "name": "param",
1655
+ "text": "thisArg The object to be used as the this object."
1656
+ },
1657
+ {
1658
+ "name": "param",
1659
+ "text": "argArray A set of arguments to be passed to the function."
1660
+ }
1661
+ ],
1662
+ "docs": "Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.",
1663
+ "complexTypes": [
1664
+ "Function"
1665
+ ],
1666
+ "slug": "apply"
1667
+ },
1668
+ {
1669
+ "name": "call",
1670
+ "signature": "(this: Function, thisArg: any, ...argArray: any[]) => any",
1671
+ "parameters": [
1672
+ {
1673
+ "name": "thisArg",
1674
+ "docs": "The object to be used as the current object.",
1675
+ "type": "any"
1676
+ },
1677
+ {
1678
+ "name": "argArray",
1679
+ "docs": "A list of arguments to be passed to the method.",
1680
+ "type": "any[]"
1681
+ }
1682
+ ],
1683
+ "returns": "any",
1684
+ "tags": [
1685
+ {
1686
+ "name": "param",
1687
+ "text": "thisArg The object to be used as the current object."
1688
+ },
1689
+ {
1690
+ "name": "param",
1691
+ "text": "argArray A list of arguments to be passed to the method."
1692
+ }
1693
+ ],
1694
+ "docs": "Calls a method of an object, substituting another object for the current object.",
1695
+ "complexTypes": [
1696
+ "Function"
1697
+ ],
1698
+ "slug": "call"
1699
+ },
1700
+ {
1701
+ "name": "bind",
1702
+ "signature": "(this: Function, thisArg: any, ...argArray: any[]) => any",
1703
+ "parameters": [
1704
+ {
1705
+ "name": "thisArg",
1706
+ "docs": "An object to which the this keyword can refer inside the new function.",
1707
+ "type": "any"
1708
+ },
1709
+ {
1710
+ "name": "argArray",
1711
+ "docs": "A list of arguments to be passed to the new function.",
1712
+ "type": "any[]"
1713
+ }
1714
+ ],
1715
+ "returns": "any",
1716
+ "tags": [
1717
+ {
1718
+ "name": "param",
1719
+ "text": "thisArg An object to which the this keyword can refer inside the new function."
1720
+ },
1721
+ {
1722
+ "name": "param",
1723
+ "text": "argArray A list of arguments to be passed to the new function."
1724
+ }
1725
+ ],
1726
+ "docs": "For a given function, creates a bound function that has the same body as the original function.\r\nThe this object of the bound function is associated with the specified object, and has the specified initial parameters.",
1727
+ "complexTypes": [
1728
+ "Function"
1729
+ ],
1730
+ "slug": "bind"
1731
+ },
1732
+ {
1733
+ "name": "toString",
1734
+ "signature": "() => string",
1735
+ "parameters": [],
1736
+ "returns": "string",
1737
+ "tags": [],
1738
+ "docs": "Returns a string representation of a function.",
1739
+ "complexTypes": [],
1740
+ "slug": "tostring"
1741
+ }
1742
+ ],
1743
+ "properties": [
1744
+ {
1745
+ "name": "prototype",
1746
+ "tags": [],
1747
+ "docs": "",
1748
+ "complexTypes": [],
1749
+ "type": "any"
1750
+ },
1751
+ {
1752
+ "name": "length",
1753
+ "tags": [],
1754
+ "docs": "",
1755
+ "complexTypes": [],
1756
+ "type": "number"
1757
+ },
1758
+ {
1759
+ "name": "arguments",
1760
+ "tags": [],
1761
+ "docs": "",
1762
+ "complexTypes": [],
1763
+ "type": "any"
1764
+ },
1765
+ {
1766
+ "name": "caller",
1767
+ "tags": [],
1768
+ "docs": "",
1769
+ "complexTypes": [
1770
+ "Function"
1771
+ ],
1772
+ "type": "Function"
1773
+ }
1774
+ ]
1775
+ },
1776
+ {
1777
+ "name": "FunctionDeclaration",
1778
+ "slug": "functiondeclaration",
1779
+ "docs": "",
1780
+ "tags": [],
1781
+ "methods": [],
1782
+ "properties": [
1783
+ {
1784
+ "name": "id",
1785
+ "tags": [],
1786
+ "docs": "It is null when a function declaration is a part of the `export default function` statement",
1787
+ "complexTypes": [
1788
+ "Identifier"
1789
+ ],
1790
+ "type": "Identifier"
1791
+ }
1792
+ ]
1793
+ },
1794
+ {
1795
+ "name": "Identifier",
1796
+ "slug": "identifier",
1797
+ "docs": "",
1798
+ "tags": [],
1799
+ "methods": [],
1800
+ "properties": [
1801
+ {
1802
+ "name": "type",
1803
+ "tags": [],
1804
+ "docs": "",
1805
+ "complexTypes": [],
1806
+ "type": "'Identifier'"
1807
+ },
1808
+ {
1809
+ "name": "name",
1810
+ "tags": [],
1811
+ "docs": "",
1812
+ "complexTypes": [],
1813
+ "type": "string"
1814
+ }
1815
+ ]
1816
+ },
1817
+ {
1818
+ "name": "FunctionExpression",
1819
+ "slug": "functionexpression",
1820
+ "docs": "",
1821
+ "tags": [],
1822
+ "methods": [],
1823
+ "properties": [
1824
+ {
1825
+ "name": "id",
1826
+ "tags": [],
1827
+ "docs": "",
1828
+ "complexTypes": [
1829
+ "Identifier"
1830
+ ],
1831
+ "type": "Identifier | null | undefined"
1832
+ },
1833
+ {
1834
+ "name": "type",
1835
+ "tags": [],
1836
+ "docs": "",
1837
+ "complexTypes": [],
1838
+ "type": "'FunctionExpression'"
1839
+ },
1840
+ {
1841
+ "name": "body",
1842
+ "tags": [],
1843
+ "docs": "",
1844
+ "complexTypes": [
1845
+ "BlockStatement"
1846
+ ],
1847
+ "type": "BlockStatement"
1848
+ }
1849
+ ]
1850
+ },
1851
+ {
1852
+ "name": "BlockStatement",
1853
+ "slug": "blockstatement",
1854
+ "docs": "",
1855
+ "tags": [],
1856
+ "methods": [],
1857
+ "properties": [
1858
+ {
1859
+ "name": "type",
1860
+ "tags": [],
1861
+ "docs": "",
1862
+ "complexTypes": [],
1863
+ "type": "'BlockStatement'"
1864
+ },
1865
+ {
1866
+ "name": "body",
1867
+ "tags": [],
1868
+ "docs": "",
1869
+ "complexTypes": [
1870
+ "Statement"
1871
+ ],
1872
+ "type": "Statement[]"
1873
+ },
1874
+ {
1875
+ "name": "innerComments",
1876
+ "tags": [],
1877
+ "docs": "",
1878
+ "complexTypes": [
1879
+ "Comment"
1880
+ ],
1881
+ "type": "Comment[] | undefined"
1882
+ }
1883
+ ]
1884
+ },
1885
+ {
1886
+ "name": "ExpressionStatement",
1887
+ "slug": "expressionstatement",
1888
+ "docs": "",
1889
+ "tags": [],
1890
+ "methods": [],
1891
+ "properties": [
1892
+ {
1893
+ "name": "type",
1894
+ "tags": [],
1895
+ "docs": "",
1896
+ "complexTypes": [],
1897
+ "type": "'ExpressionStatement'"
1898
+ },
1899
+ {
1900
+ "name": "expression",
1901
+ "tags": [],
1902
+ "docs": "",
1903
+ "complexTypes": [
1904
+ "Expression"
1905
+ ],
1906
+ "type": "Expression"
1907
+ }
1908
+ ]
1909
+ },
1910
+ {
1911
+ "name": "ExpressionMap",
1912
+ "slug": "expressionmap",
1913
+ "docs": "",
1914
+ "tags": [],
1915
+ "methods": [],
1916
+ "properties": [
1917
+ {
1918
+ "name": "ArrayExpression",
1919
+ "tags": [],
1920
+ "docs": "",
1921
+ "complexTypes": [
1922
+ "ArrayExpression"
1923
+ ],
1924
+ "type": "ArrayExpression"
1925
+ },
1926
+ {
1927
+ "name": "ArrowFunctionExpression",
1928
+ "tags": [],
1929
+ "docs": "",
1930
+ "complexTypes": [
1931
+ "ArrowFunctionExpression"
1932
+ ],
1933
+ "type": "ArrowFunctionExpression"
1934
+ },
1935
+ {
1936
+ "name": "AssignmentExpression",
1937
+ "tags": [],
1938
+ "docs": "",
1939
+ "complexTypes": [
1940
+ "AssignmentExpression"
1941
+ ],
1942
+ "type": "AssignmentExpression"
1943
+ },
1944
+ {
1945
+ "name": "AwaitExpression",
1946
+ "tags": [],
1947
+ "docs": "",
1948
+ "complexTypes": [
1949
+ "AwaitExpression"
1950
+ ],
1951
+ "type": "AwaitExpression"
1952
+ },
1953
+ {
1954
+ "name": "BinaryExpression",
1955
+ "tags": [],
1956
+ "docs": "",
1957
+ "complexTypes": [
1958
+ "BinaryExpression"
1959
+ ],
1960
+ "type": "BinaryExpression"
1961
+ },
1962
+ {
1963
+ "name": "CallExpression",
1964
+ "tags": [],
1965
+ "docs": "",
1966
+ "complexTypes": [
1967
+ "CallExpression"
1968
+ ],
1969
+ "type": "CallExpression"
1970
+ },
1971
+ {
1972
+ "name": "ChainExpression",
1973
+ "tags": [],
1974
+ "docs": "",
1975
+ "complexTypes": [
1976
+ "ChainExpression"
1977
+ ],
1978
+ "type": "ChainExpression"
1979
+ },
1980
+ {
1981
+ "name": "ClassExpression",
1982
+ "tags": [],
1983
+ "docs": "",
1984
+ "complexTypes": [
1985
+ "ClassExpression"
1986
+ ],
1987
+ "type": "ClassExpression"
1988
+ },
1989
+ {
1990
+ "name": "ConditionalExpression",
1991
+ "tags": [],
1992
+ "docs": "",
1993
+ "complexTypes": [
1994
+ "ConditionalExpression"
1995
+ ],
1996
+ "type": "ConditionalExpression"
1997
+ },
1998
+ {
1999
+ "name": "FunctionExpression",
2000
+ "tags": [],
2001
+ "docs": "",
2002
+ "complexTypes": [
2003
+ "FunctionExpression"
2004
+ ],
2005
+ "type": "FunctionExpression"
2006
+ },
2007
+ {
2008
+ "name": "Identifier",
2009
+ "tags": [],
2010
+ "docs": "",
2011
+ "complexTypes": [
2012
+ "Identifier"
2013
+ ],
2014
+ "type": "Identifier"
2015
+ },
2016
+ {
2017
+ "name": "ImportExpression",
2018
+ "tags": [],
2019
+ "docs": "",
2020
+ "complexTypes": [
2021
+ "ImportExpression"
2022
+ ],
2023
+ "type": "ImportExpression"
2024
+ },
2025
+ {
2026
+ "name": "Literal",
2027
+ "tags": [],
2028
+ "docs": "",
2029
+ "complexTypes": [
2030
+ "Literal"
2031
+ ],
2032
+ "type": "Literal"
2033
+ },
2034
+ {
2035
+ "name": "LogicalExpression",
2036
+ "tags": [],
2037
+ "docs": "",
2038
+ "complexTypes": [
2039
+ "LogicalExpression"
2040
+ ],
2041
+ "type": "LogicalExpression"
2042
+ },
2043
+ {
2044
+ "name": "MemberExpression",
2045
+ "tags": [],
2046
+ "docs": "",
2047
+ "complexTypes": [
2048
+ "MemberExpression"
2049
+ ],
2050
+ "type": "MemberExpression"
2051
+ },
2052
+ {
2053
+ "name": "MetaProperty",
2054
+ "tags": [],
2055
+ "docs": "",
2056
+ "complexTypes": [
2057
+ "MetaProperty"
2058
+ ],
2059
+ "type": "MetaProperty"
2060
+ },
2061
+ {
2062
+ "name": "NewExpression",
2063
+ "tags": [],
2064
+ "docs": "",
2065
+ "complexTypes": [
2066
+ "NewExpression"
2067
+ ],
2068
+ "type": "NewExpression"
2069
+ },
2070
+ {
2071
+ "name": "ObjectExpression",
2072
+ "tags": [],
2073
+ "docs": "",
2074
+ "complexTypes": [
2075
+ "ObjectExpression"
2076
+ ],
2077
+ "type": "ObjectExpression"
2078
+ },
2079
+ {
2080
+ "name": "SequenceExpression",
2081
+ "tags": [],
2082
+ "docs": "",
2083
+ "complexTypes": [
2084
+ "SequenceExpression"
2085
+ ],
2086
+ "type": "SequenceExpression"
2087
+ },
2088
+ {
2089
+ "name": "TaggedTemplateExpression",
2090
+ "tags": [],
2091
+ "docs": "",
2092
+ "complexTypes": [
2093
+ "TaggedTemplateExpression"
2094
+ ],
2095
+ "type": "TaggedTemplateExpression"
2096
+ },
2097
+ {
2098
+ "name": "TemplateLiteral",
2099
+ "tags": [],
2100
+ "docs": "",
2101
+ "complexTypes": [
2102
+ "TemplateLiteral"
2103
+ ],
2104
+ "type": "TemplateLiteral"
2105
+ },
2106
+ {
2107
+ "name": "ThisExpression",
2108
+ "tags": [],
2109
+ "docs": "",
2110
+ "complexTypes": [
2111
+ "ThisExpression"
2112
+ ],
2113
+ "type": "ThisExpression"
2114
+ },
2115
+ {
2116
+ "name": "UnaryExpression",
2117
+ "tags": [],
2118
+ "docs": "",
2119
+ "complexTypes": [
2120
+ "UnaryExpression"
2121
+ ],
2122
+ "type": "UnaryExpression"
2123
+ },
2124
+ {
2125
+ "name": "UpdateExpression",
2126
+ "tags": [],
2127
+ "docs": "",
2128
+ "complexTypes": [
2129
+ "UpdateExpression"
2130
+ ],
2131
+ "type": "UpdateExpression"
2132
+ },
2133
+ {
2134
+ "name": "YieldExpression",
2135
+ "tags": [],
2136
+ "docs": "",
2137
+ "complexTypes": [
2138
+ "YieldExpression"
2139
+ ],
2140
+ "type": "YieldExpression"
2141
+ }
2142
+ ]
2143
+ },
2144
+ {
2145
+ "name": "ArrayExpression",
2146
+ "slug": "arrayexpression",
2147
+ "docs": "",
2148
+ "tags": [],
2149
+ "methods": [],
2150
+ "properties": [
2151
+ {
2152
+ "name": "type",
2153
+ "tags": [],
2154
+ "docs": "",
2155
+ "complexTypes": [],
2156
+ "type": "'ArrayExpression'"
2157
+ },
2158
+ {
2159
+ "name": "elements",
2160
+ "tags": [],
2161
+ "docs": "",
2162
+ "complexTypes": [
2163
+ "Array",
2164
+ "Expression",
2165
+ "SpreadElement"
2166
+ ],
2167
+ "type": "Array<Expression | SpreadElement | null>"
2168
+ }
2169
+ ]
2170
+ },
2171
+ {
2172
+ "name": "SpreadElement",
2173
+ "slug": "spreadelement",
2174
+ "docs": "",
2175
+ "tags": [],
2176
+ "methods": [],
2177
+ "properties": [
2178
+ {
2179
+ "name": "type",
2180
+ "tags": [],
2181
+ "docs": "",
2182
+ "complexTypes": [],
2183
+ "type": "'SpreadElement'"
2184
+ },
2185
+ {
2186
+ "name": "argument",
2187
+ "tags": [],
2188
+ "docs": "",
2189
+ "complexTypes": [
2190
+ "Expression"
2191
+ ],
2192
+ "type": "Expression"
2193
+ }
2194
+ ]
2195
+ },
2196
+ {
2197
+ "name": "ArrowFunctionExpression",
2198
+ "slug": "arrowfunctionexpression",
2199
+ "docs": "",
2200
+ "tags": [],
2201
+ "methods": [],
2202
+ "properties": [
2203
+ {
2204
+ "name": "type",
2205
+ "tags": [],
2206
+ "docs": "",
2207
+ "complexTypes": [],
2208
+ "type": "'ArrowFunctionExpression'"
2209
+ },
2210
+ {
2211
+ "name": "expression",
2212
+ "tags": [],
2213
+ "docs": "",
2214
+ "complexTypes": [],
2215
+ "type": "boolean"
2216
+ },
2217
+ {
2218
+ "name": "body",
2219
+ "tags": [],
2220
+ "docs": "",
2221
+ "complexTypes": [
2222
+ "BlockStatement",
2223
+ "Expression"
2224
+ ],
2225
+ "type": "Expression | BlockStatement"
2226
+ }
2227
+ ]
2228
+ },
2229
+ {
2230
+ "name": "AssignmentExpression",
2231
+ "slug": "assignmentexpression",
2232
+ "docs": "",
2233
+ "tags": [],
2234
+ "methods": [],
2235
+ "properties": [
2236
+ {
2237
+ "name": "type",
2238
+ "tags": [],
2239
+ "docs": "",
2240
+ "complexTypes": [],
2241
+ "type": "'AssignmentExpression'"
2242
+ },
2243
+ {
2244
+ "name": "operator",
2245
+ "tags": [],
2246
+ "docs": "",
2247
+ "complexTypes": [
2248
+ "AssignmentOperator"
2249
+ ],
2250
+ "type": "AssignmentOperator"
2251
+ },
2252
+ {
2253
+ "name": "left",
2254
+ "tags": [],
2255
+ "docs": "",
2256
+ "complexTypes": [
2257
+ "Pattern",
2258
+ "MemberExpression"
2259
+ ],
2260
+ "type": "Pattern"
2261
+ },
2262
+ {
2263
+ "name": "right",
2264
+ "tags": [],
2265
+ "docs": "",
2266
+ "complexTypes": [
2267
+ "Expression"
2268
+ ],
2269
+ "type": "Expression"
2270
+ }
2271
+ ]
2272
+ },
2273
+ {
2274
+ "name": "ObjectPattern",
2275
+ "slug": "objectpattern",
2276
+ "docs": "",
2277
+ "tags": [],
2278
+ "methods": [],
2279
+ "properties": [
2280
+ {
2281
+ "name": "type",
2282
+ "tags": [],
2283
+ "docs": "",
2284
+ "complexTypes": [],
2285
+ "type": "'ObjectPattern'"
2286
+ },
2287
+ {
2288
+ "name": "properties",
2289
+ "tags": [],
2290
+ "docs": "",
2291
+ "complexTypes": [
2292
+ "Array",
2293
+ "AssignmentProperty",
2294
+ "RestElement"
2295
+ ],
2296
+ "type": "Array<AssignmentProperty | RestElement>"
2297
+ }
2298
+ ]
2299
+ },
2300
+ {
2301
+ "name": "AssignmentProperty",
2302
+ "slug": "assignmentproperty",
2303
+ "docs": "",
2304
+ "tags": [],
2305
+ "methods": [],
2306
+ "properties": [
2307
+ {
2308
+ "name": "value",
2309
+ "tags": [],
2310
+ "docs": "",
2311
+ "complexTypes": [
2312
+ "Pattern"
2313
+ ],
2314
+ "type": "Pattern"
2315
+ },
2316
+ {
2317
+ "name": "kind",
2318
+ "tags": [],
2319
+ "docs": "",
2320
+ "complexTypes": [],
2321
+ "type": "'init'"
2322
+ },
2323
+ {
2324
+ "name": "method",
2325
+ "tags": [],
2326
+ "docs": "",
2327
+ "complexTypes": [],
2328
+ "type": "boolean"
2329
+ }
2330
+ ]
2331
+ },
2332
+ {
2333
+ "name": "RestElement",
2334
+ "slug": "restelement",
2335
+ "docs": "",
2336
+ "tags": [],
2337
+ "methods": [],
2338
+ "properties": [
2339
+ {
2340
+ "name": "type",
2341
+ "tags": [],
2342
+ "docs": "",
2343
+ "complexTypes": [],
2344
+ "type": "'RestElement'"
2345
+ },
2346
+ {
2347
+ "name": "argument",
2348
+ "tags": [],
2349
+ "docs": "",
2350
+ "complexTypes": [
2351
+ "Pattern"
2352
+ ],
2353
+ "type": "Pattern"
2354
+ }
2355
+ ]
2356
+ },
2357
+ {
2358
+ "name": "ArrayPattern",
2359
+ "slug": "arraypattern",
2360
+ "docs": "",
2361
+ "tags": [],
2362
+ "methods": [],
2363
+ "properties": [
2364
+ {
2365
+ "name": "type",
2366
+ "tags": [],
2367
+ "docs": "",
2368
+ "complexTypes": [],
2369
+ "type": "'ArrayPattern'"
2370
+ },
2371
+ {
2372
+ "name": "elements",
2373
+ "tags": [],
2374
+ "docs": "",
2375
+ "complexTypes": [
2376
+ "Array",
2377
+ "Pattern"
2378
+ ],
2379
+ "type": "Array<Pattern | null>"
2380
+ }
2381
+ ]
2382
+ },
2383
+ {
2384
+ "name": "AssignmentPattern",
2385
+ "slug": "assignmentpattern",
2386
+ "docs": "",
2387
+ "tags": [],
2388
+ "methods": [],
2389
+ "properties": [
2390
+ {
2391
+ "name": "type",
2392
+ "tags": [],
2393
+ "docs": "",
2394
+ "complexTypes": [],
2395
+ "type": "'AssignmentPattern'"
2396
+ },
2397
+ {
2398
+ "name": "left",
2399
+ "tags": [],
2400
+ "docs": "",
2401
+ "complexTypes": [
2402
+ "Pattern"
2403
+ ],
2404
+ "type": "Pattern"
2405
+ },
2406
+ {
2407
+ "name": "right",
2408
+ "tags": [],
2409
+ "docs": "",
2410
+ "complexTypes": [
2411
+ "Expression"
2412
+ ],
2413
+ "type": "Expression"
2414
+ }
2415
+ ]
2416
+ },
2417
+ {
2418
+ "name": "MemberExpression",
2419
+ "slug": "memberexpression",
2420
+ "docs": "",
2421
+ "tags": [],
2422
+ "methods": [],
2423
+ "properties": [
2424
+ {
2425
+ "name": "type",
2426
+ "tags": [],
2427
+ "docs": "",
2428
+ "complexTypes": [],
2429
+ "type": "'MemberExpression'"
2430
+ },
2431
+ {
2432
+ "name": "object",
2433
+ "tags": [],
2434
+ "docs": "",
2435
+ "complexTypes": [
2436
+ "Expression",
2437
+ "Super"
2438
+ ],
2439
+ "type": "Expression | Super"
2440
+ },
2441
+ {
2442
+ "name": "property",
2443
+ "tags": [],
2444
+ "docs": "",
2445
+ "complexTypes": [
2446
+ "Expression",
2447
+ "PrivateIdentifier"
2448
+ ],
2449
+ "type": "Expression | PrivateIdentifier"
2450
+ },
2451
+ {
2452
+ "name": "computed",
2453
+ "tags": [],
2454
+ "docs": "",
2455
+ "complexTypes": [],
2456
+ "type": "boolean"
2457
+ },
2458
+ {
2459
+ "name": "optional",
2460
+ "tags": [],
2461
+ "docs": "",
2462
+ "complexTypes": [],
2463
+ "type": "boolean"
2464
+ }
2465
+ ]
2466
+ },
2467
+ {
2468
+ "name": "Super",
2469
+ "slug": "super",
2470
+ "docs": "",
2471
+ "tags": [],
2472
+ "methods": [],
2473
+ "properties": [
2474
+ {
2475
+ "name": "type",
2476
+ "tags": [],
2477
+ "docs": "",
2478
+ "complexTypes": [],
2479
+ "type": "'Super'"
2480
+ }
2481
+ ]
2482
+ },
2483
+ {
2484
+ "name": "PrivateIdentifier",
2485
+ "slug": "privateidentifier",
2486
+ "docs": "",
2487
+ "tags": [],
2488
+ "methods": [],
2489
+ "properties": [
2490
+ {
2491
+ "name": "type",
2492
+ "tags": [],
2493
+ "docs": "",
2494
+ "complexTypes": [],
2495
+ "type": "'PrivateIdentifier'"
2496
+ },
2497
+ {
2498
+ "name": "name",
2499
+ "tags": [],
2500
+ "docs": "",
2501
+ "complexTypes": [],
2502
+ "type": "string"
2503
+ }
2504
+ ]
2505
+ },
2506
+ {
2507
+ "name": "AwaitExpression",
2508
+ "slug": "awaitexpression",
2509
+ "docs": "",
2510
+ "tags": [],
2511
+ "methods": [],
2512
+ "properties": [
2513
+ {
2514
+ "name": "type",
2515
+ "tags": [],
2516
+ "docs": "",
2517
+ "complexTypes": [],
2518
+ "type": "'AwaitExpression'"
2519
+ },
2520
+ {
2521
+ "name": "argument",
2522
+ "tags": [],
2523
+ "docs": "",
2524
+ "complexTypes": [
2525
+ "Expression"
2526
+ ],
2527
+ "type": "Expression"
2528
+ }
2529
+ ]
2530
+ },
2531
+ {
2532
+ "name": "BinaryExpression",
2533
+ "slug": "binaryexpression",
2534
+ "docs": "",
2535
+ "tags": [],
2536
+ "methods": [],
2537
+ "properties": [
2538
+ {
2539
+ "name": "type",
2540
+ "tags": [],
2541
+ "docs": "",
2542
+ "complexTypes": [],
2543
+ "type": "'BinaryExpression'"
2544
+ },
2545
+ {
2546
+ "name": "operator",
2547
+ "tags": [],
2548
+ "docs": "",
2549
+ "complexTypes": [
2550
+ "BinaryOperator"
2551
+ ],
2552
+ "type": "BinaryOperator"
2553
+ },
2554
+ {
2555
+ "name": "left",
2556
+ "tags": [],
2557
+ "docs": "",
2558
+ "complexTypes": [
2559
+ "Expression",
2560
+ "PrivateIdentifier"
2561
+ ],
2562
+ "type": "Expression | PrivateIdentifier"
2563
+ },
2564
+ {
2565
+ "name": "right",
2566
+ "tags": [],
2567
+ "docs": "",
2568
+ "complexTypes": [
2569
+ "Expression"
2570
+ ],
2571
+ "type": "Expression"
2572
+ }
2573
+ ]
2574
+ },
2575
+ {
2576
+ "name": "SimpleCallExpression",
2577
+ "slug": "simplecallexpression",
2578
+ "docs": "",
2579
+ "tags": [],
2580
+ "methods": [],
2581
+ "properties": [
2582
+ {
2583
+ "name": "type",
2584
+ "tags": [],
2585
+ "docs": "",
2586
+ "complexTypes": [],
2587
+ "type": "'CallExpression'"
2588
+ },
2589
+ {
2590
+ "name": "optional",
2591
+ "tags": [],
2592
+ "docs": "",
2593
+ "complexTypes": [],
2594
+ "type": "boolean"
2595
+ }
2596
+ ]
2597
+ },
2598
+ {
2599
+ "name": "NewExpression",
2600
+ "slug": "newexpression",
2601
+ "docs": "",
2602
+ "tags": [],
2603
+ "methods": [],
2604
+ "properties": [
2605
+ {
2606
+ "name": "type",
2607
+ "tags": [],
2608
+ "docs": "",
2609
+ "complexTypes": [],
2610
+ "type": "'NewExpression'"
2611
+ }
2612
+ ]
2613
+ },
2614
+ {
2615
+ "name": "ChainExpression",
2616
+ "slug": "chainexpression",
2617
+ "docs": "",
2618
+ "tags": [],
2619
+ "methods": [],
2620
+ "properties": [
2621
+ {
2622
+ "name": "type",
2623
+ "tags": [],
2624
+ "docs": "",
2625
+ "complexTypes": [],
2626
+ "type": "'ChainExpression'"
2627
+ },
2628
+ {
2629
+ "name": "expression",
2630
+ "tags": [],
2631
+ "docs": "",
2632
+ "complexTypes": [
2633
+ "ChainElement"
2634
+ ],
2635
+ "type": "ChainElement"
2636
+ }
2637
+ ]
2638
+ },
2639
+ {
2640
+ "name": "ClassExpression",
2641
+ "slug": "classexpression",
2642
+ "docs": "",
2643
+ "tags": [],
2644
+ "methods": [],
2645
+ "properties": [
2646
+ {
2647
+ "name": "type",
2648
+ "tags": [],
2649
+ "docs": "",
2650
+ "complexTypes": [],
2651
+ "type": "'ClassExpression'"
2652
+ },
2653
+ {
2654
+ "name": "id",
2655
+ "tags": [],
2656
+ "docs": "",
2657
+ "complexTypes": [
2658
+ "Identifier"
2659
+ ],
2660
+ "type": "Identifier | null | undefined"
2661
+ }
2662
+ ]
2663
+ },
2664
+ {
2665
+ "name": "ConditionalExpression",
2666
+ "slug": "conditionalexpression",
2667
+ "docs": "",
2668
+ "tags": [],
2669
+ "methods": [],
2670
+ "properties": [
2671
+ {
2672
+ "name": "type",
2673
+ "tags": [],
2674
+ "docs": "",
2675
+ "complexTypes": [],
2676
+ "type": "'ConditionalExpression'"
2677
+ },
2678
+ {
2679
+ "name": "test",
2680
+ "tags": [],
2681
+ "docs": "",
2682
+ "complexTypes": [
2683
+ "Expression"
2684
+ ],
2685
+ "type": "Expression"
2686
+ },
2687
+ {
2688
+ "name": "alternate",
2689
+ "tags": [],
2690
+ "docs": "",
2691
+ "complexTypes": [
2692
+ "Expression"
2693
+ ],
2694
+ "type": "Expression"
2695
+ },
2696
+ {
2697
+ "name": "consequent",
2698
+ "tags": [],
2699
+ "docs": "",
2700
+ "complexTypes": [
2701
+ "Expression"
2702
+ ],
2703
+ "type": "Expression"
2704
+ }
2705
+ ]
2706
+ },
2707
+ {
2708
+ "name": "ImportExpression",
2709
+ "slug": "importexpression",
2710
+ "docs": "",
2711
+ "tags": [],
2712
+ "methods": [],
2713
+ "properties": [
2714
+ {
2715
+ "name": "type",
2716
+ "tags": [],
2717
+ "docs": "",
2718
+ "complexTypes": [],
2719
+ "type": "'ImportExpression'"
2720
+ },
2721
+ {
2722
+ "name": "source",
2723
+ "tags": [],
2724
+ "docs": "",
2725
+ "complexTypes": [
2726
+ "Expression"
2727
+ ],
2728
+ "type": "Expression"
2729
+ }
2730
+ ]
2731
+ },
2732
+ {
2733
+ "name": "SimpleLiteral",
2734
+ "slug": "simpleliteral",
2735
+ "docs": "",
2736
+ "tags": [],
2737
+ "methods": [],
2738
+ "properties": [
2739
+ {
2740
+ "name": "type",
2741
+ "tags": [],
2742
+ "docs": "",
2743
+ "complexTypes": [],
2744
+ "type": "'Literal'"
2745
+ },
2746
+ {
2747
+ "name": "value",
2748
+ "tags": [],
2749
+ "docs": "",
2750
+ "complexTypes": [],
2751
+ "type": "string | number | boolean | null"
2752
+ },
2753
+ {
2754
+ "name": "raw",
2755
+ "tags": [],
2756
+ "docs": "",
2757
+ "complexTypes": [],
2758
+ "type": "string | undefined"
2759
+ }
2760
+ ]
2761
+ },
2762
+ {
2763
+ "name": "RegExpLiteral",
2764
+ "slug": "regexpliteral",
2765
+ "docs": "",
2766
+ "tags": [],
2767
+ "methods": [],
2768
+ "properties": [
2769
+ {
2770
+ "name": "type",
2771
+ "tags": [],
2772
+ "docs": "",
2773
+ "complexTypes": [],
2774
+ "type": "'Literal'"
2775
+ },
2776
+ {
2777
+ "name": "value",
2778
+ "tags": [],
2779
+ "docs": "",
2780
+ "complexTypes": [
2781
+ "RegExp"
2782
+ ],
2783
+ "type": "RegExp | null | undefined"
2784
+ },
2785
+ {
2786
+ "name": "regex",
2787
+ "tags": [],
2788
+ "docs": "",
2789
+ "complexTypes": [],
2790
+ "type": "{ pattern: string; flags: string; }"
2791
+ },
2792
+ {
2793
+ "name": "raw",
2794
+ "tags": [],
2795
+ "docs": "",
2796
+ "complexTypes": [],
2797
+ "type": "string | undefined"
2798
+ }
2799
+ ]
2800
+ },
2801
+ {
2802
+ "name": "BigIntLiteral",
2803
+ "slug": "bigintliteral",
2804
+ "docs": "",
2805
+ "tags": [],
2806
+ "methods": [],
2807
+ "properties": [
2808
+ {
2809
+ "name": "type",
2810
+ "tags": [],
2811
+ "docs": "",
2812
+ "complexTypes": [],
2813
+ "type": "'Literal'"
2814
+ },
2815
+ {
2816
+ "name": "value",
2817
+ "tags": [],
2818
+ "docs": "",
2819
+ "complexTypes": [],
2820
+ "type": "bigint | null | undefined"
2821
+ },
2822
+ {
2823
+ "name": "bigint",
2824
+ "tags": [],
2825
+ "docs": "",
2826
+ "complexTypes": [],
2827
+ "type": "string"
2828
+ },
2829
+ {
2830
+ "name": "raw",
2831
+ "tags": [],
2832
+ "docs": "",
2833
+ "complexTypes": [],
2834
+ "type": "string | undefined"
2835
+ }
2836
+ ]
2837
+ },
2838
+ {
2839
+ "name": "LogicalExpression",
2840
+ "slug": "logicalexpression",
2841
+ "docs": "",
2842
+ "tags": [],
2843
+ "methods": [],
2844
+ "properties": [
2845
+ {
2846
+ "name": "type",
2847
+ "tags": [],
2848
+ "docs": "",
2849
+ "complexTypes": [],
2850
+ "type": "'LogicalExpression'"
2851
+ },
2852
+ {
2853
+ "name": "operator",
2854
+ "tags": [],
2855
+ "docs": "",
2856
+ "complexTypes": [
2857
+ "LogicalOperator"
2858
+ ],
2859
+ "type": "LogicalOperator"
2860
+ },
2861
+ {
2862
+ "name": "left",
2863
+ "tags": [],
2864
+ "docs": "",
2865
+ "complexTypes": [
2866
+ "Expression"
2867
+ ],
2868
+ "type": "Expression"
2869
+ },
2870
+ {
2871
+ "name": "right",
2872
+ "tags": [],
2873
+ "docs": "",
2874
+ "complexTypes": [
2875
+ "Expression"
2876
+ ],
2877
+ "type": "Expression"
2878
+ }
2879
+ ]
2880
+ },
2881
+ {
2882
+ "name": "MetaProperty",
2883
+ "slug": "metaproperty",
2884
+ "docs": "",
2885
+ "tags": [],
2886
+ "methods": [],
2887
+ "properties": [
2888
+ {
2889
+ "name": "type",
2890
+ "tags": [],
2891
+ "docs": "",
2892
+ "complexTypes": [],
2893
+ "type": "'MetaProperty'"
2894
+ },
2895
+ {
2896
+ "name": "meta",
2897
+ "tags": [],
2898
+ "docs": "",
2899
+ "complexTypes": [
2900
+ "Identifier"
2901
+ ],
2902
+ "type": "Identifier"
2903
+ },
2904
+ {
2905
+ "name": "property",
2906
+ "tags": [],
2907
+ "docs": "",
2908
+ "complexTypes": [
2909
+ "Identifier"
2910
+ ],
2911
+ "type": "Identifier"
2912
+ }
2913
+ ]
2914
+ },
2915
+ {
2916
+ "name": "ObjectExpression",
2917
+ "slug": "objectexpression",
2918
+ "docs": "",
2919
+ "tags": [],
2920
+ "methods": [],
2921
+ "properties": [
2922
+ {
2923
+ "name": "type",
2924
+ "tags": [],
2925
+ "docs": "",
2926
+ "complexTypes": [],
2927
+ "type": "'ObjectExpression'"
2928
+ },
2929
+ {
2930
+ "name": "properties",
2931
+ "tags": [],
2932
+ "docs": "",
2933
+ "complexTypes": [
2934
+ "Array",
2935
+ "Property",
2936
+ "SpreadElement"
2937
+ ],
2938
+ "type": "Array<Property | SpreadElement>"
2939
+ }
2940
+ ]
2941
+ },
2942
+ {
2943
+ "name": "Property",
2944
+ "slug": "property",
2945
+ "docs": "",
2946
+ "tags": [],
2947
+ "methods": [],
2948
+ "properties": [
2949
+ {
2950
+ "name": "type",
2951
+ "tags": [],
2952
+ "docs": "",
2953
+ "complexTypes": [],
2954
+ "type": "'Property'"
2955
+ },
2956
+ {
2957
+ "name": "key",
2958
+ "tags": [],
2959
+ "docs": "",
2960
+ "complexTypes": [
2961
+ "Expression",
2962
+ "PrivateIdentifier"
2963
+ ],
2964
+ "type": "Expression | PrivateIdentifier"
2965
+ },
2966
+ {
2967
+ "name": "value",
2968
+ "tags": [],
2969
+ "docs": "",
2970
+ "complexTypes": [
2971
+ "Expression",
2972
+ "Pattern"
2973
+ ],
2974
+ "type": "ClassExpression | ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AwaitExpression | BinaryExpression | SimpleCallExpression | NewExpression | ChainExpression | ConditionalExpression | FunctionExpression | Identifier | ImportExpression | SimpleLiteral | RegExpLiteral | BigIntLiteral | LogicalExpression | MemberExpression | MetaProperty | ObjectExpression | SequenceExpression | TaggedTemplateExpression | TemplateLiteral | ThisExpression | UnaryExpression | UpdateExpression | YieldExpression | ObjectPattern | ArrayPattern | RestElement | AssignmentPattern"
2975
+ },
2976
+ {
2977
+ "name": "kind",
2978
+ "tags": [],
2979
+ "docs": "",
2980
+ "complexTypes": [],
2981
+ "type": "'init' | 'get' | 'set'"
2982
+ },
2983
+ {
2984
+ "name": "method",
2985
+ "tags": [],
2986
+ "docs": "",
2987
+ "complexTypes": [],
2988
+ "type": "boolean"
2989
+ },
2990
+ {
2991
+ "name": "shorthand",
2992
+ "tags": [],
2993
+ "docs": "",
2994
+ "complexTypes": [],
2995
+ "type": "boolean"
2996
+ },
2997
+ {
2998
+ "name": "computed",
2999
+ "tags": [],
3000
+ "docs": "",
3001
+ "complexTypes": [],
3002
+ "type": "boolean"
3003
+ }
3004
+ ]
3005
+ },
3006
+ {
3007
+ "name": "SequenceExpression",
3008
+ "slug": "sequenceexpression",
3009
+ "docs": "",
3010
+ "tags": [],
3011
+ "methods": [],
3012
+ "properties": [
3013
+ {
3014
+ "name": "type",
3015
+ "tags": [],
3016
+ "docs": "",
3017
+ "complexTypes": [],
3018
+ "type": "'SequenceExpression'"
3019
+ },
3020
+ {
3021
+ "name": "expressions",
3022
+ "tags": [],
3023
+ "docs": "",
3024
+ "complexTypes": [
3025
+ "Expression"
3026
+ ],
3027
+ "type": "Expression[]"
3028
+ }
3029
+ ]
3030
+ },
3031
+ {
3032
+ "name": "TaggedTemplateExpression",
3033
+ "slug": "taggedtemplateexpression",
3034
+ "docs": "",
3035
+ "tags": [],
3036
+ "methods": [],
3037
+ "properties": [
3038
+ {
3039
+ "name": "type",
3040
+ "tags": [],
3041
+ "docs": "",
3042
+ "complexTypes": [],
3043
+ "type": "'TaggedTemplateExpression'"
3044
+ },
3045
+ {
3046
+ "name": "tag",
3047
+ "tags": [],
3048
+ "docs": "",
3049
+ "complexTypes": [
3050
+ "Expression"
3051
+ ],
3052
+ "type": "Expression"
3053
+ },
3054
+ {
3055
+ "name": "quasi",
3056
+ "tags": [],
3057
+ "docs": "",
3058
+ "complexTypes": [
3059
+ "TemplateLiteral"
3060
+ ],
3061
+ "type": "TemplateLiteral"
3062
+ }
3063
+ ]
3064
+ },
3065
+ {
3066
+ "name": "TemplateLiteral",
3067
+ "slug": "templateliteral",
3068
+ "docs": "",
3069
+ "tags": [],
3070
+ "methods": [],
3071
+ "properties": [
3072
+ {
3073
+ "name": "type",
3074
+ "tags": [],
3075
+ "docs": "",
3076
+ "complexTypes": [],
3077
+ "type": "'TemplateLiteral'"
3078
+ },
3079
+ {
3080
+ "name": "quasis",
3081
+ "tags": [],
3082
+ "docs": "",
3083
+ "complexTypes": [
3084
+ "TemplateElement"
3085
+ ],
3086
+ "type": "TemplateElement[]"
3087
+ },
3088
+ {
3089
+ "name": "expressions",
3090
+ "tags": [],
3091
+ "docs": "",
3092
+ "complexTypes": [
3093
+ "Expression"
3094
+ ],
3095
+ "type": "Expression[]"
3096
+ }
3097
+ ]
3098
+ },
3099
+ {
3100
+ "name": "TemplateElement",
3101
+ "slug": "templateelement",
3102
+ "docs": "",
3103
+ "tags": [],
3104
+ "methods": [],
3105
+ "properties": [
3106
+ {
3107
+ "name": "type",
3108
+ "tags": [],
3109
+ "docs": "",
3110
+ "complexTypes": [],
3111
+ "type": "'TemplateElement'"
3112
+ },
3113
+ {
3114
+ "name": "tail",
3115
+ "tags": [],
3116
+ "docs": "",
3117
+ "complexTypes": [],
3118
+ "type": "boolean"
3119
+ },
3120
+ {
3121
+ "name": "value",
3122
+ "tags": [],
3123
+ "docs": "",
3124
+ "complexTypes": [],
3125
+ "type": "{ cooked?: string | null | undefined; raw: string; }"
3126
+ }
3127
+ ]
3128
+ },
3129
+ {
3130
+ "name": "ThisExpression",
3131
+ "slug": "thisexpression",
3132
+ "docs": "",
3133
+ "tags": [],
3134
+ "methods": [],
3135
+ "properties": [
3136
+ {
3137
+ "name": "type",
3138
+ "tags": [],
3139
+ "docs": "",
3140
+ "complexTypes": [],
3141
+ "type": "'ThisExpression'"
3142
+ }
3143
+ ]
3144
+ },
3145
+ {
3146
+ "name": "UnaryExpression",
3147
+ "slug": "unaryexpression",
3148
+ "docs": "",
3149
+ "tags": [],
3150
+ "methods": [],
3151
+ "properties": [
3152
+ {
3153
+ "name": "type",
3154
+ "tags": [],
3155
+ "docs": "",
3156
+ "complexTypes": [],
3157
+ "type": "'UnaryExpression'"
3158
+ },
3159
+ {
3160
+ "name": "operator",
3161
+ "tags": [],
3162
+ "docs": "",
3163
+ "complexTypes": [
3164
+ "UnaryOperator"
3165
+ ],
3166
+ "type": "UnaryOperator"
3167
+ },
3168
+ {
3169
+ "name": "prefix",
3170
+ "tags": [],
3171
+ "docs": "",
3172
+ "complexTypes": [],
3173
+ "type": "true"
3174
+ },
3175
+ {
3176
+ "name": "argument",
3177
+ "tags": [],
3178
+ "docs": "",
3179
+ "complexTypes": [
3180
+ "Expression"
3181
+ ],
3182
+ "type": "Expression"
3183
+ }
3184
+ ]
3185
+ },
3186
+ {
3187
+ "name": "UpdateExpression",
3188
+ "slug": "updateexpression",
3189
+ "docs": "",
3190
+ "tags": [],
3191
+ "methods": [],
3192
+ "properties": [
3193
+ {
3194
+ "name": "type",
3195
+ "tags": [],
3196
+ "docs": "",
3197
+ "complexTypes": [],
3198
+ "type": "'UpdateExpression'"
3199
+ },
3200
+ {
3201
+ "name": "operator",
3202
+ "tags": [],
3203
+ "docs": "",
3204
+ "complexTypes": [
3205
+ "UpdateOperator"
3206
+ ],
3207
+ "type": "UpdateOperator"
3208
+ },
3209
+ {
3210
+ "name": "argument",
3211
+ "tags": [],
3212
+ "docs": "",
3213
+ "complexTypes": [
3214
+ "Expression"
3215
+ ],
3216
+ "type": "Expression"
3217
+ },
3218
+ {
3219
+ "name": "prefix",
3220
+ "tags": [],
3221
+ "docs": "",
3222
+ "complexTypes": [],
3223
+ "type": "boolean"
3224
+ }
3225
+ ]
3226
+ },
3227
+ {
3228
+ "name": "YieldExpression",
3229
+ "slug": "yieldexpression",
3230
+ "docs": "",
3231
+ "tags": [],
3232
+ "methods": [],
3233
+ "properties": [
3234
+ {
3235
+ "name": "type",
3236
+ "tags": [],
3237
+ "docs": "",
3238
+ "complexTypes": [],
3239
+ "type": "'YieldExpression'"
3240
+ },
3241
+ {
3242
+ "name": "argument",
3243
+ "tags": [],
3244
+ "docs": "",
3245
+ "complexTypes": [
3246
+ "Expression"
3247
+ ],
3248
+ "type": "Expression | null | undefined"
3249
+ },
3250
+ {
3251
+ "name": "delegate",
3252
+ "tags": [],
3253
+ "docs": "",
3254
+ "complexTypes": [],
3255
+ "type": "boolean"
3256
+ }
3257
+ ]
3258
+ },
3259
+ {
3260
+ "name": "StaticBlock",
3261
+ "slug": "staticblock",
3262
+ "docs": "",
3263
+ "tags": [],
3264
+ "methods": [],
3265
+ "properties": [
3266
+ {
3267
+ "name": "type",
3268
+ "tags": [],
3269
+ "docs": "",
3270
+ "complexTypes": [],
3271
+ "type": "'StaticBlock'"
3272
+ }
3273
+ ]
3274
+ },
3275
+ {
3276
+ "name": "EmptyStatement",
3277
+ "slug": "emptystatement",
3278
+ "docs": "",
3279
+ "tags": [],
3280
+ "methods": [],
3281
+ "properties": [
3282
+ {
3283
+ "name": "type",
3284
+ "tags": [],
3285
+ "docs": "",
3286
+ "complexTypes": [],
3287
+ "type": "'EmptyStatement'"
3288
+ }
3289
+ ]
3290
+ },
3291
+ {
3292
+ "name": "DebuggerStatement",
3293
+ "slug": "debuggerstatement",
3294
+ "docs": "",
3295
+ "tags": [],
3296
+ "methods": [],
3297
+ "properties": [
3298
+ {
3299
+ "name": "type",
3300
+ "tags": [],
3301
+ "docs": "",
3302
+ "complexTypes": [],
3303
+ "type": "'DebuggerStatement'"
3304
+ }
3305
+ ]
3306
+ },
3307
+ {
3308
+ "name": "WithStatement",
3309
+ "slug": "withstatement",
3310
+ "docs": "",
3311
+ "tags": [],
3312
+ "methods": [],
3313
+ "properties": [
3314
+ {
3315
+ "name": "type",
3316
+ "tags": [],
3317
+ "docs": "",
3318
+ "complexTypes": [],
3319
+ "type": "'WithStatement'"
3320
+ },
3321
+ {
3322
+ "name": "object",
3323
+ "tags": [],
3324
+ "docs": "",
3325
+ "complexTypes": [
3326
+ "Expression"
3327
+ ],
3328
+ "type": "Expression"
3329
+ },
3330
+ {
3331
+ "name": "body",
3332
+ "tags": [],
3333
+ "docs": "",
3334
+ "complexTypes": [
3335
+ "Statement"
3336
+ ],
3337
+ "type": "Statement"
3338
+ }
3339
+ ]
3340
+ },
3341
+ {
3342
+ "name": "ReturnStatement",
3343
+ "slug": "returnstatement",
3344
+ "docs": "",
3345
+ "tags": [],
3346
+ "methods": [],
3347
+ "properties": [
3348
+ {
3349
+ "name": "type",
3350
+ "tags": [],
3351
+ "docs": "",
3352
+ "complexTypes": [],
3353
+ "type": "'ReturnStatement'"
3354
+ },
3355
+ {
3356
+ "name": "argument",
3357
+ "tags": [],
3358
+ "docs": "",
3359
+ "complexTypes": [
3360
+ "Expression"
3361
+ ],
3362
+ "type": "Expression | null | undefined"
3363
+ }
3364
+ ]
3365
+ },
3366
+ {
3367
+ "name": "LabeledStatement",
3368
+ "slug": "labeledstatement",
3369
+ "docs": "",
3370
+ "tags": [],
3371
+ "methods": [],
3372
+ "properties": [
3373
+ {
3374
+ "name": "type",
3375
+ "tags": [],
3376
+ "docs": "",
3377
+ "complexTypes": [],
3378
+ "type": "'LabeledStatement'"
3379
+ },
3380
+ {
3381
+ "name": "label",
3382
+ "tags": [],
3383
+ "docs": "",
3384
+ "complexTypes": [
3385
+ "Identifier"
3386
+ ],
3387
+ "type": "Identifier"
3388
+ },
3389
+ {
3390
+ "name": "body",
3391
+ "tags": [],
3392
+ "docs": "",
3393
+ "complexTypes": [
3394
+ "Statement"
3395
+ ],
3396
+ "type": "Statement"
3397
+ }
3398
+ ]
3399
+ },
3400
+ {
3401
+ "name": "BreakStatement",
3402
+ "slug": "breakstatement",
3403
+ "docs": "",
3404
+ "tags": [],
3405
+ "methods": [],
3406
+ "properties": [
3407
+ {
3408
+ "name": "type",
3409
+ "tags": [],
3410
+ "docs": "",
3411
+ "complexTypes": [],
3412
+ "type": "'BreakStatement'"
3413
+ },
3414
+ {
3415
+ "name": "label",
3416
+ "tags": [],
3417
+ "docs": "",
3418
+ "complexTypes": [
3419
+ "Identifier"
3420
+ ],
3421
+ "type": "Identifier | null | undefined"
3422
+ }
3423
+ ]
3424
+ },
3425
+ {
3426
+ "name": "ContinueStatement",
3427
+ "slug": "continuestatement",
3428
+ "docs": "",
3429
+ "tags": [],
3430
+ "methods": [],
3431
+ "properties": [
3432
+ {
3433
+ "name": "type",
3434
+ "tags": [],
3435
+ "docs": "",
3436
+ "complexTypes": [],
3437
+ "type": "'ContinueStatement'"
3438
+ },
3439
+ {
3440
+ "name": "label",
3441
+ "tags": [],
3442
+ "docs": "",
3443
+ "complexTypes": [
3444
+ "Identifier"
3445
+ ],
3446
+ "type": "Identifier | null | undefined"
3447
+ }
3448
+ ]
3449
+ },
3450
+ {
3451
+ "name": "IfStatement",
3452
+ "slug": "ifstatement",
3453
+ "docs": "",
3454
+ "tags": [],
3455
+ "methods": [],
3456
+ "properties": [
3457
+ {
3458
+ "name": "type",
3459
+ "tags": [],
3460
+ "docs": "",
3461
+ "complexTypes": [],
3462
+ "type": "'IfStatement'"
3463
+ },
3464
+ {
3465
+ "name": "test",
3466
+ "tags": [],
3467
+ "docs": "",
3468
+ "complexTypes": [
3469
+ "Expression"
3470
+ ],
3471
+ "type": "Expression"
3472
+ },
3473
+ {
3474
+ "name": "consequent",
3475
+ "tags": [],
3476
+ "docs": "",
3477
+ "complexTypes": [
3478
+ "Statement"
3479
+ ],
3480
+ "type": "Statement"
3481
+ },
3482
+ {
3483
+ "name": "alternate",
3484
+ "tags": [],
3485
+ "docs": "",
3486
+ "complexTypes": [
3487
+ "Statement"
3488
+ ],
3489
+ "type": "Statement | null | undefined"
3490
+ }
3491
+ ]
3492
+ },
3493
+ {
3494
+ "name": "SwitchStatement",
3495
+ "slug": "switchstatement",
3496
+ "docs": "",
3497
+ "tags": [],
3498
+ "methods": [],
3499
+ "properties": [
3500
+ {
3501
+ "name": "type",
3502
+ "tags": [],
3503
+ "docs": "",
3504
+ "complexTypes": [],
3505
+ "type": "'SwitchStatement'"
3506
+ },
3507
+ {
3508
+ "name": "discriminant",
3509
+ "tags": [],
3510
+ "docs": "",
3511
+ "complexTypes": [
3512
+ "Expression"
3513
+ ],
3514
+ "type": "Expression"
3515
+ },
3516
+ {
3517
+ "name": "cases",
3518
+ "tags": [],
3519
+ "docs": "",
3520
+ "complexTypes": [
3521
+ "SwitchCase"
3522
+ ],
3523
+ "type": "SwitchCase[]"
3524
+ }
3525
+ ]
3526
+ },
3527
+ {
3528
+ "name": "SwitchCase",
3529
+ "slug": "switchcase",
3530
+ "docs": "",
3531
+ "tags": [],
3532
+ "methods": [],
3533
+ "properties": [
3534
+ {
3535
+ "name": "type",
3536
+ "tags": [],
3537
+ "docs": "",
3538
+ "complexTypes": [],
3539
+ "type": "'SwitchCase'"
3540
+ },
3541
+ {
3542
+ "name": "test",
3543
+ "tags": [],
3544
+ "docs": "",
3545
+ "complexTypes": [
3546
+ "Expression"
3547
+ ],
3548
+ "type": "Expression | null | undefined"
3549
+ },
3550
+ {
3551
+ "name": "consequent",
3552
+ "tags": [],
3553
+ "docs": "",
3554
+ "complexTypes": [
3555
+ "Statement"
3556
+ ],
3557
+ "type": "Statement[]"
3558
+ }
3559
+ ]
3560
+ },
3561
+ {
3562
+ "name": "ThrowStatement",
3563
+ "slug": "throwstatement",
3564
+ "docs": "",
3565
+ "tags": [],
3566
+ "methods": [],
3567
+ "properties": [
3568
+ {
3569
+ "name": "type",
3570
+ "tags": [],
3571
+ "docs": "",
3572
+ "complexTypes": [],
3573
+ "type": "'ThrowStatement'"
3574
+ },
3575
+ {
3576
+ "name": "argument",
3577
+ "tags": [],
3578
+ "docs": "",
3579
+ "complexTypes": [
3580
+ "Expression"
3581
+ ],
3582
+ "type": "Expression"
3583
+ }
3584
+ ]
3585
+ },
3586
+ {
3587
+ "name": "TryStatement",
3588
+ "slug": "trystatement",
3589
+ "docs": "",
3590
+ "tags": [],
3591
+ "methods": [],
3592
+ "properties": [
3593
+ {
3594
+ "name": "type",
3595
+ "tags": [],
3596
+ "docs": "",
3597
+ "complexTypes": [],
3598
+ "type": "'TryStatement'"
3599
+ },
3600
+ {
3601
+ "name": "block",
3602
+ "tags": [],
3603
+ "docs": "",
3604
+ "complexTypes": [
3605
+ "BlockStatement"
3606
+ ],
3607
+ "type": "BlockStatement"
3608
+ },
3609
+ {
3610
+ "name": "handler",
3611
+ "tags": [],
3612
+ "docs": "",
3613
+ "complexTypes": [
3614
+ "CatchClause"
3615
+ ],
3616
+ "type": "CatchClause | null | undefined"
3617
+ },
3618
+ {
3619
+ "name": "finalizer",
3620
+ "tags": [],
3621
+ "docs": "",
3622
+ "complexTypes": [
3623
+ "BlockStatement"
3624
+ ],
3625
+ "type": "BlockStatement | null | undefined"
3626
+ }
3627
+ ]
3628
+ },
3629
+ {
3630
+ "name": "CatchClause",
3631
+ "slug": "catchclause",
3632
+ "docs": "",
3633
+ "tags": [],
3634
+ "methods": [],
3635
+ "properties": [
3636
+ {
3637
+ "name": "type",
3638
+ "tags": [],
3639
+ "docs": "",
3640
+ "complexTypes": [],
3641
+ "type": "'CatchClause'"
3642
+ },
3643
+ {
3644
+ "name": "param",
3645
+ "tags": [],
3646
+ "docs": "",
3647
+ "complexTypes": [
3648
+ "Pattern"
3649
+ ],
3650
+ "type": "Pattern | null"
3651
+ },
3652
+ {
3653
+ "name": "body",
3654
+ "tags": [],
3655
+ "docs": "",
3656
+ "complexTypes": [
3657
+ "BlockStatement"
3658
+ ],
3659
+ "type": "BlockStatement"
3660
+ }
3661
+ ]
3662
+ },
3663
+ {
3664
+ "name": "WhileStatement",
3665
+ "slug": "whilestatement",
3666
+ "docs": "",
3667
+ "tags": [],
3668
+ "methods": [],
3669
+ "properties": [
3670
+ {
3671
+ "name": "type",
3672
+ "tags": [],
3673
+ "docs": "",
3674
+ "complexTypes": [],
3675
+ "type": "'WhileStatement'"
3676
+ },
3677
+ {
3678
+ "name": "test",
3679
+ "tags": [],
3680
+ "docs": "",
3681
+ "complexTypes": [
3682
+ "Expression"
3683
+ ],
3684
+ "type": "Expression"
3685
+ },
3686
+ {
3687
+ "name": "body",
3688
+ "tags": [],
3689
+ "docs": "",
3690
+ "complexTypes": [
3691
+ "Statement"
3692
+ ],
3693
+ "type": "Statement"
3694
+ }
3695
+ ]
3696
+ },
3697
+ {
3698
+ "name": "DoWhileStatement",
3699
+ "slug": "dowhilestatement",
3700
+ "docs": "",
3701
+ "tags": [],
3702
+ "methods": [],
3703
+ "properties": [
3704
+ {
3705
+ "name": "type",
3706
+ "tags": [],
3707
+ "docs": "",
3708
+ "complexTypes": [],
3709
+ "type": "'DoWhileStatement'"
3710
+ },
3711
+ {
3712
+ "name": "body",
3713
+ "tags": [],
3714
+ "docs": "",
3715
+ "complexTypes": [
3716
+ "Statement"
3717
+ ],
3718
+ "type": "Statement"
3719
+ },
3720
+ {
3721
+ "name": "test",
3722
+ "tags": [],
3723
+ "docs": "",
3724
+ "complexTypes": [
3725
+ "Expression"
3726
+ ],
3727
+ "type": "Expression"
3728
+ }
3729
+ ]
3730
+ },
3731
+ {
3732
+ "name": "ForStatement",
3733
+ "slug": "forstatement",
3734
+ "docs": "",
3735
+ "tags": [],
3736
+ "methods": [],
3737
+ "properties": [
3738
+ {
3739
+ "name": "type",
3740
+ "tags": [],
3741
+ "docs": "",
3742
+ "complexTypes": [],
3743
+ "type": "'ForStatement'"
3744
+ },
3745
+ {
3746
+ "name": "init",
3747
+ "tags": [],
3748
+ "docs": "",
3749
+ "complexTypes": [
3750
+ "VariableDeclaration",
3751
+ "Expression"
3752
+ ],
3753
+ "type": "Expression | VariableDeclaration | null | undefined"
3754
+ },
3755
+ {
3756
+ "name": "test",
3757
+ "tags": [],
3758
+ "docs": "",
3759
+ "complexTypes": [
3760
+ "Expression"
3761
+ ],
3762
+ "type": "Expression | null | undefined"
3763
+ },
3764
+ {
3765
+ "name": "update",
3766
+ "tags": [],
3767
+ "docs": "",
3768
+ "complexTypes": [
3769
+ "Expression"
3770
+ ],
3771
+ "type": "Expression | null | undefined"
3772
+ },
3773
+ {
3774
+ "name": "body",
3775
+ "tags": [],
3776
+ "docs": "",
3777
+ "complexTypes": [
3778
+ "Statement"
3779
+ ],
3780
+ "type": "Statement"
3781
+ }
3782
+ ]
3783
+ },
3784
+ {
3785
+ "name": "VariableDeclaration",
3786
+ "slug": "variabledeclaration",
3787
+ "docs": "",
3788
+ "tags": [],
3789
+ "methods": [],
3790
+ "properties": [
3791
+ {
3792
+ "name": "type",
3793
+ "tags": [],
3794
+ "docs": "",
3795
+ "complexTypes": [],
3796
+ "type": "'VariableDeclaration'"
3797
+ },
3798
+ {
3799
+ "name": "declarations",
3800
+ "tags": [],
3801
+ "docs": "",
3802
+ "complexTypes": [
3803
+ "VariableDeclarator"
3804
+ ],
3805
+ "type": "VariableDeclarator[]"
3806
+ },
3807
+ {
3808
+ "name": "kind",
3809
+ "tags": [],
3810
+ "docs": "",
3811
+ "complexTypes": [],
3812
+ "type": "'var' | 'let' | 'const'"
3813
+ }
3814
+ ]
3815
+ },
3816
+ {
3817
+ "name": "VariableDeclarator",
3818
+ "slug": "variabledeclarator",
3819
+ "docs": "",
3820
+ "tags": [],
3821
+ "methods": [],
3822
+ "properties": [
3823
+ {
3824
+ "name": "type",
3825
+ "tags": [],
3826
+ "docs": "",
3827
+ "complexTypes": [],
3828
+ "type": "'VariableDeclarator'"
3829
+ },
3830
+ {
3831
+ "name": "id",
3832
+ "tags": [],
3833
+ "docs": "",
3834
+ "complexTypes": [
3835
+ "Pattern"
3836
+ ],
3837
+ "type": "Pattern"
3838
+ },
3839
+ {
3840
+ "name": "init",
3841
+ "tags": [],
3842
+ "docs": "",
3843
+ "complexTypes": [
3844
+ "Expression"
3845
+ ],
3846
+ "type": "Expression | null | undefined"
3847
+ }
3848
+ ]
3849
+ },
3850
+ {
3851
+ "name": "ForInStatement",
3852
+ "slug": "forinstatement",
3853
+ "docs": "",
3854
+ "tags": [],
3855
+ "methods": [],
3856
+ "properties": [
3857
+ {
3858
+ "name": "type",
3859
+ "tags": [],
3860
+ "docs": "",
3861
+ "complexTypes": [],
3862
+ "type": "'ForInStatement'"
3863
+ }
3864
+ ]
3865
+ },
3866
+ {
3867
+ "name": "ForOfStatement",
3868
+ "slug": "forofstatement",
3869
+ "docs": "",
3870
+ "tags": [],
3871
+ "methods": [],
3872
+ "properties": [
3873
+ {
3874
+ "name": "type",
3875
+ "tags": [],
3876
+ "docs": "",
3877
+ "complexTypes": [],
3878
+ "type": "'ForOfStatement'"
3879
+ },
3880
+ {
3881
+ "name": "await",
3882
+ "tags": [],
3883
+ "docs": "",
3884
+ "complexTypes": [],
3885
+ "type": "boolean"
3886
+ }
3887
+ ]
3888
+ },
3889
+ {
3890
+ "name": "ClassDeclaration",
3891
+ "slug": "classdeclaration",
3892
+ "docs": "",
3893
+ "tags": [],
3894
+ "methods": [],
3895
+ "properties": [
3896
+ {
3897
+ "name": "id",
3898
+ "tags": [],
3899
+ "docs": "It is null when a class declaration is a part of the `export default class` statement",
3900
+ "complexTypes": [
3901
+ "Identifier"
3902
+ ],
3903
+ "type": "Identifier"
3904
+ }
3905
+ ]
3906
+ },
3907
+ {
3908
+ "name": "Comment",
3909
+ "slug": "comment",
3910
+ "docs": "",
3911
+ "tags": [],
3912
+ "methods": [],
3913
+ "properties": [
3914
+ {
3915
+ "name": "type",
3916
+ "tags": [],
3917
+ "docs": "",
3918
+ "complexTypes": [],
3919
+ "type": "'Line' | 'Block'"
3920
+ },
3921
+ {
3922
+ "name": "value",
3923
+ "tags": [],
3924
+ "docs": "",
3925
+ "complexTypes": [],
3926
+ "type": "string"
3927
+ }
3928
+ ]
3929
+ }
3930
+ ],
3931
+ "enums": [],
3932
+ "typeAliases": [
3933
+ {
3934
+ "name": "PropertyKey",
3935
+ "slug": "propertykey",
3936
+ "docs": "",
3937
+ "types": [
3938
+ {
3939
+ "text": "string",
3940
+ "complexTypes": []
3941
+ },
3942
+ {
3943
+ "text": "number",
3944
+ "complexTypes": []
3945
+ },
3946
+ {
3947
+ "text": "symbol",
3948
+ "complexTypes": []
3949
+ }
3950
+ ]
3951
+ },
3952
+ {
3953
+ "name": "Function",
3954
+ "slug": "function",
3955
+ "docs": "",
3956
+ "types": [
3957
+ {
3958
+ "text": "FunctionDeclaration",
3959
+ "complexTypes": [
3960
+ "FunctionDeclaration"
3961
+ ]
3962
+ },
3963
+ {
3964
+ "text": "FunctionExpression",
3965
+ "complexTypes": [
3966
+ "FunctionExpression"
3967
+ ]
3968
+ },
3969
+ {
3970
+ "text": "ArrowFunctionExpression",
3971
+ "complexTypes": [
3972
+ "ArrowFunctionExpression"
3973
+ ]
3974
+ }
3975
+ ]
3976
+ },
3977
+ {
3978
+ "name": "Statement",
3979
+ "slug": "statement",
3980
+ "docs": "",
3981
+ "types": [
3982
+ {
3983
+ "text": "ExpressionStatement",
3984
+ "complexTypes": [
3985
+ "ExpressionStatement"
3986
+ ]
3987
+ },
3988
+ {
3989
+ "text": "BlockStatement",
3990
+ "complexTypes": [
3991
+ "BlockStatement"
3992
+ ]
3993
+ },
3994
+ {
3995
+ "text": "StaticBlock",
3996
+ "complexTypes": [
3997
+ "StaticBlock"
3998
+ ]
3999
+ },
4000
+ {
4001
+ "text": "EmptyStatement",
4002
+ "complexTypes": [
4003
+ "EmptyStatement"
4004
+ ]
4005
+ },
4006
+ {
4007
+ "text": "DebuggerStatement",
4008
+ "complexTypes": [
4009
+ "DebuggerStatement"
4010
+ ]
4011
+ },
4012
+ {
4013
+ "text": "WithStatement",
4014
+ "complexTypes": [
4015
+ "WithStatement"
4016
+ ]
4017
+ },
4018
+ {
4019
+ "text": "ReturnStatement",
4020
+ "complexTypes": [
4021
+ "ReturnStatement"
4022
+ ]
4023
+ },
4024
+ {
4025
+ "text": "LabeledStatement",
4026
+ "complexTypes": [
4027
+ "LabeledStatement"
4028
+ ]
4029
+ },
4030
+ {
4031
+ "text": "BreakStatement",
4032
+ "complexTypes": [
4033
+ "BreakStatement"
4034
+ ]
4035
+ },
4036
+ {
4037
+ "text": "ContinueStatement",
4038
+ "complexTypes": [
4039
+ "ContinueStatement"
4040
+ ]
4041
+ },
4042
+ {
4043
+ "text": "IfStatement",
4044
+ "complexTypes": [
4045
+ "IfStatement"
4046
+ ]
4047
+ },
4048
+ {
4049
+ "text": "SwitchStatement",
4050
+ "complexTypes": [
4051
+ "SwitchStatement"
4052
+ ]
4053
+ },
4054
+ {
4055
+ "text": "ThrowStatement",
4056
+ "complexTypes": [
4057
+ "ThrowStatement"
4058
+ ]
4059
+ },
4060
+ {
4061
+ "text": "TryStatement",
4062
+ "complexTypes": [
4063
+ "TryStatement"
4064
+ ]
4065
+ },
4066
+ {
4067
+ "text": "WhileStatement",
4068
+ "complexTypes": [
4069
+ "WhileStatement"
4070
+ ]
4071
+ },
4072
+ {
4073
+ "text": "DoWhileStatement",
4074
+ "complexTypes": [
4075
+ "DoWhileStatement"
4076
+ ]
4077
+ },
4078
+ {
4079
+ "text": "ForStatement",
4080
+ "complexTypes": [
4081
+ "ForStatement"
4082
+ ]
4083
+ },
4084
+ {
4085
+ "text": "ForInStatement",
4086
+ "complexTypes": [
4087
+ "ForInStatement"
4088
+ ]
4089
+ },
4090
+ {
4091
+ "text": "ForOfStatement",
4092
+ "complexTypes": [
4093
+ "ForOfStatement"
4094
+ ]
4095
+ },
4096
+ {
4097
+ "text": "Declaration",
4098
+ "complexTypes": [
4099
+ "Declaration"
4100
+ ]
4101
+ }
4102
+ ]
4103
+ },
4104
+ {
4105
+ "name": "Expression",
4106
+ "slug": "expression",
4107
+ "docs": "",
4108
+ "types": [
4109
+ {
4110
+ "text": "ExpressionMap[keyof ExpressionMap]",
4111
+ "complexTypes": [
4112
+ "ExpressionMap"
4113
+ ]
4114
+ }
4115
+ ]
4116
+ },
4117
+ {
4118
+ "name": "AssignmentOperator",
4119
+ "slug": "assignmentoperator",
4120
+ "docs": "",
4121
+ "types": [
4122
+ {
4123
+ "text": "\"=\"",
4124
+ "complexTypes": []
4125
+ },
4126
+ {
4127
+ "text": "\"+=\"",
4128
+ "complexTypes": []
4129
+ },
4130
+ {
4131
+ "text": "\"-=\"",
4132
+ "complexTypes": []
4133
+ },
4134
+ {
4135
+ "text": "\"*=\"",
4136
+ "complexTypes": []
4137
+ },
4138
+ {
4139
+ "text": "\"/=\"",
4140
+ "complexTypes": []
4141
+ },
4142
+ {
4143
+ "text": "\"%=\"",
4144
+ "complexTypes": []
4145
+ },
4146
+ {
4147
+ "text": "\"**=\"",
4148
+ "complexTypes": []
4149
+ },
4150
+ {
4151
+ "text": "\"<<=\"",
4152
+ "complexTypes": []
4153
+ },
4154
+ {
4155
+ "text": "\">>=\"",
4156
+ "complexTypes": []
4157
+ },
4158
+ {
4159
+ "text": "\">>>=\"",
4160
+ "complexTypes": []
4161
+ },
4162
+ {
4163
+ "text": "\"|=\"",
4164
+ "complexTypes": []
4165
+ },
4166
+ {
4167
+ "text": "\"^=\"",
4168
+ "complexTypes": []
4169
+ },
4170
+ {
4171
+ "text": "\"&=\"",
4172
+ "complexTypes": []
4173
+ },
4174
+ {
4175
+ "text": "\"||=\"",
4176
+ "complexTypes": []
4177
+ },
4178
+ {
4179
+ "text": "\"&&=\"",
4180
+ "complexTypes": []
4181
+ },
4182
+ {
4183
+ "text": "\"??=\"",
4184
+ "complexTypes": []
4185
+ }
4186
+ ]
4187
+ },
4188
+ {
4189
+ "name": "Pattern",
4190
+ "slug": "pattern",
4191
+ "docs": "",
4192
+ "types": [
4193
+ {
4194
+ "text": "Identifier",
4195
+ "complexTypes": [
4196
+ "Identifier"
4197
+ ]
4198
+ },
4199
+ {
4200
+ "text": "ObjectPattern",
4201
+ "complexTypes": [
4202
+ "ObjectPattern"
4203
+ ]
4204
+ },
4205
+ {
4206
+ "text": "ArrayPattern",
4207
+ "complexTypes": [
4208
+ "ArrayPattern"
4209
+ ]
4210
+ },
4211
+ {
4212
+ "text": "RestElement",
4213
+ "complexTypes": [
4214
+ "RestElement"
4215
+ ]
4216
+ },
4217
+ {
4218
+ "text": "AssignmentPattern",
4219
+ "complexTypes": [
4220
+ "AssignmentPattern"
4221
+ ]
4222
+ },
4223
+ {
4224
+ "text": "MemberExpression",
4225
+ "complexTypes": [
4226
+ "MemberExpression"
4227
+ ]
4228
+ }
4229
+ ]
4230
+ },
4231
+ {
4232
+ "name": "BinaryOperator",
4233
+ "slug": "binaryoperator",
4234
+ "docs": "",
4235
+ "types": [
4236
+ {
4237
+ "text": "\"==\"",
4238
+ "complexTypes": []
4239
+ },
4240
+ {
4241
+ "text": "\"!=\"",
4242
+ "complexTypes": []
4243
+ },
4244
+ {
4245
+ "text": "\"===\"",
4246
+ "complexTypes": []
4247
+ },
4248
+ {
4249
+ "text": "\"!==\"",
4250
+ "complexTypes": []
4251
+ },
4252
+ {
4253
+ "text": "\"<\"",
4254
+ "complexTypes": []
4255
+ },
4256
+ {
4257
+ "text": "\"<=\"",
4258
+ "complexTypes": []
4259
+ },
4260
+ {
4261
+ "text": "\">\"",
4262
+ "complexTypes": []
4263
+ },
4264
+ {
4265
+ "text": "\">=\"",
4266
+ "complexTypes": []
4267
+ },
4268
+ {
4269
+ "text": "\"<<\"",
4270
+ "complexTypes": []
4271
+ },
4272
+ {
4273
+ "text": "\">>\"",
4274
+ "complexTypes": []
4275
+ },
4276
+ {
4277
+ "text": "\">>>\"",
4278
+ "complexTypes": []
4279
+ },
4280
+ {
4281
+ "text": "\"+\"",
4282
+ "complexTypes": []
4283
+ },
4284
+ {
4285
+ "text": "\"-\"",
4286
+ "complexTypes": []
4287
+ },
4288
+ {
4289
+ "text": "\"*\"",
4290
+ "complexTypes": []
4291
+ },
4292
+ {
4293
+ "text": "\"/\"",
4294
+ "complexTypes": []
4295
+ },
4296
+ {
4297
+ "text": "\"%\"",
4298
+ "complexTypes": []
4299
+ },
4300
+ {
4301
+ "text": "\"**\"",
4302
+ "complexTypes": []
4303
+ },
4304
+ {
4305
+ "text": "\"|\"",
4306
+ "complexTypes": []
4307
+ },
4308
+ {
4309
+ "text": "\"^\"",
4310
+ "complexTypes": []
4311
+ },
4312
+ {
4313
+ "text": "\"&\"",
4314
+ "complexTypes": []
4315
+ },
4316
+ {
4317
+ "text": "\"in\"",
4318
+ "complexTypes": []
4319
+ },
4320
+ {
4321
+ "text": "\"instanceof\"",
4322
+ "complexTypes": []
4323
+ }
4324
+ ]
4325
+ },
4326
+ {
4327
+ "name": "CallExpression",
4328
+ "slug": "callexpression",
4329
+ "docs": "",
4330
+ "types": [
4331
+ {
4332
+ "text": "SimpleCallExpression",
4333
+ "complexTypes": [
4334
+ "SimpleCallExpression"
4335
+ ]
4336
+ },
4337
+ {
4338
+ "text": "NewExpression",
4339
+ "complexTypes": [
4340
+ "NewExpression"
4341
+ ]
4342
+ }
4343
+ ]
4344
+ },
4345
+ {
4346
+ "name": "ChainElement",
4347
+ "slug": "chainelement",
4348
+ "docs": "",
4349
+ "types": [
4350
+ {
4351
+ "text": "SimpleCallExpression",
4352
+ "complexTypes": [
4353
+ "SimpleCallExpression"
4354
+ ]
4355
+ },
4356
+ {
4357
+ "text": "MemberExpression",
4358
+ "complexTypes": [
4359
+ "MemberExpression"
4360
+ ]
4361
+ }
4362
+ ]
4363
+ },
4364
+ {
4365
+ "name": "Literal",
4366
+ "slug": "literal",
4367
+ "docs": "",
4368
+ "types": [
4369
+ {
4370
+ "text": "SimpleLiteral",
4371
+ "complexTypes": [
4372
+ "SimpleLiteral"
4373
+ ]
4374
+ },
4375
+ {
4376
+ "text": "RegExpLiteral",
4377
+ "complexTypes": [
4378
+ "RegExpLiteral"
4379
+ ]
4380
+ },
4381
+ {
4382
+ "text": "BigIntLiteral",
4383
+ "complexTypes": [
4384
+ "BigIntLiteral"
4385
+ ]
4386
+ }
4387
+ ]
4388
+ },
4389
+ {
4390
+ "name": "LogicalOperator",
4391
+ "slug": "logicaloperator",
4392
+ "docs": "",
4393
+ "types": [
4394
+ {
4395
+ "text": "\"||\"",
4396
+ "complexTypes": []
4397
+ },
4398
+ {
4399
+ "text": "\"&&\"",
4400
+ "complexTypes": []
4401
+ },
4402
+ {
4403
+ "text": "\"??\"",
4404
+ "complexTypes": []
4405
+ }
4406
+ ]
4407
+ },
4408
+ {
4409
+ "name": "UnaryOperator",
4410
+ "slug": "unaryoperator",
4411
+ "docs": "",
4412
+ "types": [
4413
+ {
4414
+ "text": "\"-\"",
4415
+ "complexTypes": []
4416
+ },
4417
+ {
4418
+ "text": "\"+\"",
4419
+ "complexTypes": []
4420
+ },
4421
+ {
4422
+ "text": "\"!\"",
4423
+ "complexTypes": []
4424
+ },
4425
+ {
4426
+ "text": "\"~\"",
4427
+ "complexTypes": []
4428
+ },
4429
+ {
4430
+ "text": "\"typeof\"",
4431
+ "complexTypes": []
4432
+ },
4433
+ {
4434
+ "text": "\"void\"",
4435
+ "complexTypes": []
4436
+ },
4437
+ {
4438
+ "text": "\"delete\"",
4439
+ "complexTypes": []
4440
+ }
4441
+ ]
4442
+ },
4443
+ {
4444
+ "name": "UpdateOperator",
4445
+ "slug": "updateoperator",
4446
+ "docs": "",
4447
+ "types": [
4448
+ {
4449
+ "text": "\"++\"",
4450
+ "complexTypes": []
4451
+ },
4452
+ {
4453
+ "text": "\"--\"",
4454
+ "complexTypes": []
4455
+ }
4456
+ ]
4457
+ },
4458
+ {
4459
+ "name": "Declaration",
4460
+ "slug": "declaration",
4461
+ "docs": "",
4462
+ "types": [
4463
+ {
4464
+ "text": "FunctionDeclaration",
4465
+ "complexTypes": [
4466
+ "FunctionDeclaration"
4467
+ ]
4468
+ },
4469
+ {
4470
+ "text": "VariableDeclaration",
4471
+ "complexTypes": [
4472
+ "VariableDeclaration"
4473
+ ]
4474
+ },
4475
+ {
4476
+ "text": "ClassDeclaration",
4477
+ "complexTypes": [
4478
+ "ClassDeclaration"
4479
+ ]
4480
+ }
4481
+ ]
4482
+ }
4483
+ ],
4484
+ "pluginConfigs": []
4485
+ }