@genesislcap/foundation-events 14.71.0 → 14.71.2

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.
@@ -756,7 +756,7 @@
756
756
  {
757
757
  "kind": "Variable",
758
758
  "canonicalReference": "@genesislcap/foundation-events!EventEmitter:var",
759
- "docComment": "/**\n * EventEmitter mixin.\n *\n * @remarks\n *\n * Strongly types the components `$emit` method, allowing only the mapped events to be emitted.\n *\n * @param Target - The class to apply the mixin to which ultimately extends {@link @microsoft/fast-element#FASTElement | FASTElement}.\n *\n * @typeParam TEventDetailMap - The {@link EventDetailMap}.\n *\n * @typeParam TTarget - The target class.\n *\n * @example\n *\n * Apply mixin to the base {@link @microsoft/fast-element#FASTElement | FASTElement}\n *\n * # Import\n * ```ts\n * import { EventEmitter, SomeSystemLevelEventDetailMap } from '@genesislcap/foundation-events';\n * import { StoreEventDetailMap, TradeEntryEventDetailMap } from '../store'; // < custom app level event maps\n * ```\n *\n * # Create event map\n * ```ts\n * type EventMap = SomeSystemLevelEventDetailMap & StoreEventDetailMap & TradeEntryEventDetailMap;\n * ```\n *\n * # Apply Mixin\n * ```ts\n * export class MyComponent extends EventEmitter<EventMap>(FASTElement) {\n * onSomeComponentEvent() {\n * this.$emit('some-allowed-event', { foo: 'expected data structure' });\n * }\n * }\n * ```\n *\n * @example\n *\n * Apply mixin to a class in the inheritance chain requires a second generic type param.\n *\n * # Apply Mixin to MyComponent that extends MyBaseComponent (which might be abstract). Mixin can be applied at different levels. # Please note there's a current limitation on retaining protected member access with this approach, so apply to base where possible. # Also, super classes cannot emit typed events via inheritance. Each level must have an explicit map. Devs can use a Union and Pick to create these.\n * ```ts\n * export class MyComponent extends EventEmitter<EventMap, MyBaseComponent>(MyBaseComponent) {}\n * ```\n *\n * @public\n */\n",
759
+ "docComment": "/**\n * EventEmitter mixin.\n *\n * @remarks\n *\n * Strongly types the components `$emit` method, allowing only the mapped events to be emitted.\n *\n * @param Target - The class to apply the mixin to which ultimately extends {@link @microsoft/fast-element#FASTElement | FASTElement}.\n *\n * @typeParam TEventDetailMap - The {@link EventDetailMap}.\n *\n * @typeParam TTarget - The target class. Defaults to a union of `HTMLElement & FASTElement`.\n *\n * @example\n *\n * Apply mixin to the base {@link @microsoft/fast-element#FASTElement | FASTElement}\n *\n * # Import\n * ```ts\n * import { EventEmitter, SomeSystemLevelEventDetailMap } from '@genesislcap/foundation-events';\n * import { StoreEventDetailMap, TradeEntryEventDetailMap } from '../store'; // < custom app level event maps\n * ```\n *\n * # Create event map\n * ```ts\n * type EventMap = SomeSystemLevelEventDetailMap & StoreEventDetailMap & TradeEntryEventDetailMap;\n * ```\n *\n * # Apply Mixin\n * ```ts\n * export class MyComponent extends EventEmitter<EventMap>(FASTElement) {\n * onSomeComponentEvent() {\n * this.$emit('some-allowed-event', { foo: 'expected data structure' });\n * }\n * }\n * ```\n *\n * @example\n *\n * Apply mixin to a class in the inheritance chain requires a second generic type param.\n *\n * # Apply Mixin to MyComponent that extends MyBaseComponent (which might be abstract). Mixin can be applied at different levels. # Please note there's a current limitation on retaining protected member access with this approach, so apply to base where possible. # Also, super classes cannot emit typed events via inheritance. Each level must have an explicit map. Devs can use a Union and Pick to create these.\n * ```ts\n * export class MyComponent extends EventEmitter<EventMap, MyBaseComponent>(MyBaseComponent) {}\n * ```\n *\n * @public\n */\n",
760
760
  "excerptTokens": [
761
761
  {
762
762
  "kind": "Content",
@@ -775,6 +775,15 @@
775
775
  "kind": "Content",
776
776
  "text": ", TTarget extends "
777
777
  },
778
+ {
779
+ "kind": "Reference",
780
+ "text": "HTMLElement",
781
+ "canonicalReference": "!HTMLElement:interface"
782
+ },
783
+ {
784
+ "kind": "Content",
785
+ "text": " & "
786
+ },
778
787
  {
779
788
  "kind": "Reference",
780
789
  "text": "FASTElement",
@@ -784,6 +793,15 @@
784
793
  "kind": "Content",
785
794
  "text": " = "
786
795
  },
796
+ {
797
+ "kind": "Reference",
798
+ "text": "HTMLElement",
799
+ "canonicalReference": "!HTMLElement:interface"
800
+ },
801
+ {
802
+ "kind": "Content",
803
+ "text": " & "
804
+ },
787
805
  {
788
806
  "kind": "Reference",
789
807
  "text": "FASTElement",
@@ -827,7 +845,2833 @@
827
845
  },
828
846
  {
829
847
  "kind": "Content",
830
- "text": ";\n readonly $fastController: import(\"@microsoft/fast-element\")."
848
+ "text": ";\n accessKey: string;\n readonly accessKeyLabel: string;\n autocapitalize: string;\n dir: string;\n draggable: boolean;\n hidden: boolean;\n inert: boolean;\n innerText: string;\n lang: string;\n readonly offsetHeight: number;\n readonly offsetLeft: number;\n readonly offsetParent: "
849
+ },
850
+ {
851
+ "kind": "Reference",
852
+ "text": "Element",
853
+ "canonicalReference": "!Element:interface"
854
+ },
855
+ {
856
+ "kind": "Content",
857
+ "text": ";\n readonly offsetTop: number;\n readonly offsetWidth: number;\n outerText: string;\n spellcheck: boolean;\n title: string;\n translate: boolean;\n attachInternals(): "
858
+ },
859
+ {
860
+ "kind": "Reference",
861
+ "text": "ElementInternals",
862
+ "canonicalReference": "!ElementInternals:interface"
863
+ },
864
+ {
865
+ "kind": "Content",
866
+ "text": ";\n click(): void;\n addEventListener<K_1 extends keyof "
867
+ },
868
+ {
869
+ "kind": "Reference",
870
+ "text": "HTMLElementEventMap",
871
+ "canonicalReference": "!HTMLElementEventMap:interface"
872
+ },
873
+ {
874
+ "kind": "Content",
875
+ "text": ">(type: K_1, listener: (this: "
876
+ },
877
+ {
878
+ "kind": "Reference",
879
+ "text": "HTMLElement",
880
+ "canonicalReference": "!HTMLElement:interface"
881
+ },
882
+ {
883
+ "kind": "Content",
884
+ "text": ", ev: "
885
+ },
886
+ {
887
+ "kind": "Reference",
888
+ "text": "HTMLElementEventMap",
889
+ "canonicalReference": "!HTMLElementEventMap:interface"
890
+ },
891
+ {
892
+ "kind": "Content",
893
+ "text": "[K_1]) => any, options?: boolean | "
894
+ },
895
+ {
896
+ "kind": "Reference",
897
+ "text": "AddEventListenerOptions",
898
+ "canonicalReference": "!AddEventListenerOptions:interface"
899
+ },
900
+ {
901
+ "kind": "Content",
902
+ "text": "): void;\n addEventListener(type: string, listener: "
903
+ },
904
+ {
905
+ "kind": "Reference",
906
+ "text": "EventListenerOrEventListenerObject",
907
+ "canonicalReference": "!EventListenerOrEventListenerObject:type"
908
+ },
909
+ {
910
+ "kind": "Content",
911
+ "text": ", options?: boolean | "
912
+ },
913
+ {
914
+ "kind": "Reference",
915
+ "text": "AddEventListenerOptions",
916
+ "canonicalReference": "!AddEventListenerOptions:interface"
917
+ },
918
+ {
919
+ "kind": "Content",
920
+ "text": "): void;\n removeEventListener<K_2 extends keyof "
921
+ },
922
+ {
923
+ "kind": "Reference",
924
+ "text": "HTMLElementEventMap",
925
+ "canonicalReference": "!HTMLElementEventMap:interface"
926
+ },
927
+ {
928
+ "kind": "Content",
929
+ "text": ">(type: K_2, listener: (this: "
930
+ },
931
+ {
932
+ "kind": "Reference",
933
+ "text": "HTMLElement",
934
+ "canonicalReference": "!HTMLElement:interface"
935
+ },
936
+ {
937
+ "kind": "Content",
938
+ "text": ", ev: "
939
+ },
940
+ {
941
+ "kind": "Reference",
942
+ "text": "HTMLElementEventMap",
943
+ "canonicalReference": "!HTMLElementEventMap:interface"
944
+ },
945
+ {
946
+ "kind": "Content",
947
+ "text": "[K_2]) => any, options?: boolean | "
948
+ },
949
+ {
950
+ "kind": "Reference",
951
+ "text": "EventListenerOptions",
952
+ "canonicalReference": "!EventListenerOptions:interface"
953
+ },
954
+ {
955
+ "kind": "Content",
956
+ "text": "): void;\n removeEventListener(type: string, listener: "
957
+ },
958
+ {
959
+ "kind": "Reference",
960
+ "text": "EventListenerOrEventListenerObject",
961
+ "canonicalReference": "!EventListenerOrEventListenerObject:type"
962
+ },
963
+ {
964
+ "kind": "Content",
965
+ "text": ", options?: boolean | "
966
+ },
967
+ {
968
+ "kind": "Reference",
969
+ "text": "EventListenerOptions",
970
+ "canonicalReference": "!EventListenerOptions:interface"
971
+ },
972
+ {
973
+ "kind": "Content",
974
+ "text": "): void;\n readonly attributes: "
975
+ },
976
+ {
977
+ "kind": "Reference",
978
+ "text": "NamedNodeMap",
979
+ "canonicalReference": "!NamedNodeMap:interface"
980
+ },
981
+ {
982
+ "kind": "Content",
983
+ "text": ";\n readonly classList: "
984
+ },
985
+ {
986
+ "kind": "Reference",
987
+ "text": "DOMTokenList",
988
+ "canonicalReference": "!DOMTokenList:interface"
989
+ },
990
+ {
991
+ "kind": "Content",
992
+ "text": ";\n className: string;\n readonly clientHeight: number;\n readonly clientLeft: number;\n readonly clientTop: number;\n readonly clientWidth: number;\n id: string;\n readonly localName: string;\n readonly namespaceURI: string;\n onfullscreenchange: (this: "
993
+ },
994
+ {
995
+ "kind": "Reference",
996
+ "text": "Element",
997
+ "canonicalReference": "!Element:interface"
998
+ },
999
+ {
1000
+ "kind": "Content",
1001
+ "text": ", ev: "
1002
+ },
1003
+ {
1004
+ "kind": "Reference",
1005
+ "text": "Event",
1006
+ "canonicalReference": "!Event:interface"
1007
+ },
1008
+ {
1009
+ "kind": "Content",
1010
+ "text": ") => any;\n onfullscreenerror: (this: "
1011
+ },
1012
+ {
1013
+ "kind": "Reference",
1014
+ "text": "Element",
1015
+ "canonicalReference": "!Element:interface"
1016
+ },
1017
+ {
1018
+ "kind": "Content",
1019
+ "text": ", ev: "
1020
+ },
1021
+ {
1022
+ "kind": "Reference",
1023
+ "text": "Event",
1024
+ "canonicalReference": "!Event:interface"
1025
+ },
1026
+ {
1027
+ "kind": "Content",
1028
+ "text": ") => any;\n outerHTML: string;\n readonly ownerDocument: "
1029
+ },
1030
+ {
1031
+ "kind": "Reference",
1032
+ "text": "Document",
1033
+ "canonicalReference": "!Document:interface"
1034
+ },
1035
+ {
1036
+ "kind": "Content",
1037
+ "text": ";\n readonly part: "
1038
+ },
1039
+ {
1040
+ "kind": "Reference",
1041
+ "text": "DOMTokenList",
1042
+ "canonicalReference": "!DOMTokenList:interface"
1043
+ },
1044
+ {
1045
+ "kind": "Content",
1046
+ "text": ";\n readonly prefix: string;\n readonly scrollHeight: number;\n scrollLeft: number;\n scrollTop: number;\n readonly scrollWidth: number;\n readonly shadowRoot: "
1047
+ },
1048
+ {
1049
+ "kind": "Reference",
1050
+ "text": "ShadowRoot",
1051
+ "canonicalReference": "!ShadowRoot:interface"
1052
+ },
1053
+ {
1054
+ "kind": "Content",
1055
+ "text": ";\n slot: string;\n readonly tagName: string;\n attachShadow(init: "
1056
+ },
1057
+ {
1058
+ "kind": "Reference",
1059
+ "text": "ShadowRootInit",
1060
+ "canonicalReference": "!ShadowRootInit:interface"
1061
+ },
1062
+ {
1063
+ "kind": "Content",
1064
+ "text": "): "
1065
+ },
1066
+ {
1067
+ "kind": "Reference",
1068
+ "text": "ShadowRoot",
1069
+ "canonicalReference": "!ShadowRoot:interface"
1070
+ },
1071
+ {
1072
+ "kind": "Content",
1073
+ "text": ";\n closest<K_3 extends keyof "
1074
+ },
1075
+ {
1076
+ "kind": "Reference",
1077
+ "text": "HTMLElementTagNameMap",
1078
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1079
+ },
1080
+ {
1081
+ "kind": "Content",
1082
+ "text": ">(selector: K_3): "
1083
+ },
1084
+ {
1085
+ "kind": "Reference",
1086
+ "text": "HTMLElementTagNameMap",
1087
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1088
+ },
1089
+ {
1090
+ "kind": "Content",
1091
+ "text": "[K_3];\n closest<K_4 extends keyof "
1092
+ },
1093
+ {
1094
+ "kind": "Reference",
1095
+ "text": "SVGElementTagNameMap",
1096
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1097
+ },
1098
+ {
1099
+ "kind": "Content",
1100
+ "text": ">(selector: K_4): "
1101
+ },
1102
+ {
1103
+ "kind": "Reference",
1104
+ "text": "SVGElementTagNameMap",
1105
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1106
+ },
1107
+ {
1108
+ "kind": "Content",
1109
+ "text": "[K_4];\n closest<E extends "
1110
+ },
1111
+ {
1112
+ "kind": "Reference",
1113
+ "text": "Element",
1114
+ "canonicalReference": "!Element:interface"
1115
+ },
1116
+ {
1117
+ "kind": "Content",
1118
+ "text": " = "
1119
+ },
1120
+ {
1121
+ "kind": "Reference",
1122
+ "text": "Element",
1123
+ "canonicalReference": "!Element:interface"
1124
+ },
1125
+ {
1126
+ "kind": "Content",
1127
+ "text": ">(selectors: string): E;\n getAttribute(qualifiedName: string): string;\n getAttributeNS(namespace: string, localName: string): string;\n getAttributeNames(): string[];\n getAttributeNode(qualifiedName: string): "
1128
+ },
1129
+ {
1130
+ "kind": "Reference",
1131
+ "text": "Attr",
1132
+ "canonicalReference": "!Attr:interface"
1133
+ },
1134
+ {
1135
+ "kind": "Content",
1136
+ "text": ";\n getAttributeNodeNS(namespace: string, localName: string): "
1137
+ },
1138
+ {
1139
+ "kind": "Reference",
1140
+ "text": "Attr",
1141
+ "canonicalReference": "!Attr:interface"
1142
+ },
1143
+ {
1144
+ "kind": "Content",
1145
+ "text": ";\n getBoundingClientRect(): "
1146
+ },
1147
+ {
1148
+ "kind": "Reference",
1149
+ "text": "DOMRect",
1150
+ "canonicalReference": "!DOMRect:interface"
1151
+ },
1152
+ {
1153
+ "kind": "Content",
1154
+ "text": ";\n getClientRects(): "
1155
+ },
1156
+ {
1157
+ "kind": "Reference",
1158
+ "text": "DOMRectList",
1159
+ "canonicalReference": "!DOMRectList:interface"
1160
+ },
1161
+ {
1162
+ "kind": "Content",
1163
+ "text": ";\n getElementsByClassName(classNames: string): "
1164
+ },
1165
+ {
1166
+ "kind": "Reference",
1167
+ "text": "HTMLCollectionOf",
1168
+ "canonicalReference": "!HTMLCollectionOf:interface"
1169
+ },
1170
+ {
1171
+ "kind": "Content",
1172
+ "text": "<"
1173
+ },
1174
+ {
1175
+ "kind": "Reference",
1176
+ "text": "Element",
1177
+ "canonicalReference": "!Element:interface"
1178
+ },
1179
+ {
1180
+ "kind": "Content",
1181
+ "text": ">;\n getElementsByTagName<K_5 extends keyof "
1182
+ },
1183
+ {
1184
+ "kind": "Reference",
1185
+ "text": "HTMLElementTagNameMap",
1186
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1187
+ },
1188
+ {
1189
+ "kind": "Content",
1190
+ "text": ">(qualifiedName: K_5): "
1191
+ },
1192
+ {
1193
+ "kind": "Reference",
1194
+ "text": "HTMLCollectionOf",
1195
+ "canonicalReference": "!HTMLCollectionOf:interface"
1196
+ },
1197
+ {
1198
+ "kind": "Content",
1199
+ "text": "<"
1200
+ },
1201
+ {
1202
+ "kind": "Reference",
1203
+ "text": "HTMLElementTagNameMap",
1204
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1205
+ },
1206
+ {
1207
+ "kind": "Content",
1208
+ "text": "[K_5]>;\n getElementsByTagName<K_6 extends keyof "
1209
+ },
1210
+ {
1211
+ "kind": "Reference",
1212
+ "text": "SVGElementTagNameMap",
1213
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1214
+ },
1215
+ {
1216
+ "kind": "Content",
1217
+ "text": ">(qualifiedName: K_6): "
1218
+ },
1219
+ {
1220
+ "kind": "Reference",
1221
+ "text": "HTMLCollectionOf",
1222
+ "canonicalReference": "!HTMLCollectionOf:interface"
1223
+ },
1224
+ {
1225
+ "kind": "Content",
1226
+ "text": "<"
1227
+ },
1228
+ {
1229
+ "kind": "Reference",
1230
+ "text": "SVGElementTagNameMap",
1231
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1232
+ },
1233
+ {
1234
+ "kind": "Content",
1235
+ "text": "[K_6]>;\n getElementsByTagName(qualifiedName: string): "
1236
+ },
1237
+ {
1238
+ "kind": "Reference",
1239
+ "text": "HTMLCollectionOf",
1240
+ "canonicalReference": "!HTMLCollectionOf:interface"
1241
+ },
1242
+ {
1243
+ "kind": "Content",
1244
+ "text": "<"
1245
+ },
1246
+ {
1247
+ "kind": "Reference",
1248
+ "text": "Element",
1249
+ "canonicalReference": "!Element:interface"
1250
+ },
1251
+ {
1252
+ "kind": "Content",
1253
+ "text": ">;\n getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1999/xhtml\", localName: string): "
1254
+ },
1255
+ {
1256
+ "kind": "Reference",
1257
+ "text": "HTMLCollectionOf",
1258
+ "canonicalReference": "!HTMLCollectionOf:interface"
1259
+ },
1260
+ {
1261
+ "kind": "Content",
1262
+ "text": "<"
1263
+ },
1264
+ {
1265
+ "kind": "Reference",
1266
+ "text": "HTMLElement",
1267
+ "canonicalReference": "!HTMLElement:interface"
1268
+ },
1269
+ {
1270
+ "kind": "Content",
1271
+ "text": ">;\n getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/2000/svg\", localName: string): "
1272
+ },
1273
+ {
1274
+ "kind": "Reference",
1275
+ "text": "HTMLCollectionOf",
1276
+ "canonicalReference": "!HTMLCollectionOf:interface"
1277
+ },
1278
+ {
1279
+ "kind": "Content",
1280
+ "text": "<"
1281
+ },
1282
+ {
1283
+ "kind": "Reference",
1284
+ "text": "SVGElement",
1285
+ "canonicalReference": "!SVGElement:interface"
1286
+ },
1287
+ {
1288
+ "kind": "Content",
1289
+ "text": ">;\n getElementsByTagNameNS(namespace: string, localName: string): "
1290
+ },
1291
+ {
1292
+ "kind": "Reference",
1293
+ "text": "HTMLCollectionOf",
1294
+ "canonicalReference": "!HTMLCollectionOf:interface"
1295
+ },
1296
+ {
1297
+ "kind": "Content",
1298
+ "text": "<"
1299
+ },
1300
+ {
1301
+ "kind": "Reference",
1302
+ "text": "Element",
1303
+ "canonicalReference": "!Element:interface"
1304
+ },
1305
+ {
1306
+ "kind": "Content",
1307
+ "text": ">;\n hasAttribute(qualifiedName: string): boolean;\n hasAttributeNS(namespace: string, localName: string): boolean;\n hasAttributes(): boolean;\n hasPointerCapture(pointerId: number): boolean;\n insertAdjacentElement(where: "
1308
+ },
1309
+ {
1310
+ "kind": "Reference",
1311
+ "text": "InsertPosition",
1312
+ "canonicalReference": "!InsertPosition:type"
1313
+ },
1314
+ {
1315
+ "kind": "Content",
1316
+ "text": ", element: "
1317
+ },
1318
+ {
1319
+ "kind": "Reference",
1320
+ "text": "Element",
1321
+ "canonicalReference": "!Element:interface"
1322
+ },
1323
+ {
1324
+ "kind": "Content",
1325
+ "text": "): "
1326
+ },
1327
+ {
1328
+ "kind": "Reference",
1329
+ "text": "Element",
1330
+ "canonicalReference": "!Element:interface"
1331
+ },
1332
+ {
1333
+ "kind": "Content",
1334
+ "text": ";\n insertAdjacentHTML(position: "
1335
+ },
1336
+ {
1337
+ "kind": "Reference",
1338
+ "text": "InsertPosition",
1339
+ "canonicalReference": "!InsertPosition:type"
1340
+ },
1341
+ {
1342
+ "kind": "Content",
1343
+ "text": ", text: string): void;\n insertAdjacentText(where: "
1344
+ },
1345
+ {
1346
+ "kind": "Reference",
1347
+ "text": "InsertPosition",
1348
+ "canonicalReference": "!InsertPosition:type"
1349
+ },
1350
+ {
1351
+ "kind": "Content",
1352
+ "text": ", data: string): void;\n matches(selectors: string): boolean;\n releasePointerCapture(pointerId: number): void;\n removeAttribute(qualifiedName: string): void;\n removeAttributeNS(namespace: string, localName: string): void;\n removeAttributeNode(attr: "
1353
+ },
1354
+ {
1355
+ "kind": "Reference",
1356
+ "text": "Attr",
1357
+ "canonicalReference": "!Attr:interface"
1358
+ },
1359
+ {
1360
+ "kind": "Content",
1361
+ "text": "): "
1362
+ },
1363
+ {
1364
+ "kind": "Reference",
1365
+ "text": "Attr",
1366
+ "canonicalReference": "!Attr:interface"
1367
+ },
1368
+ {
1369
+ "kind": "Content",
1370
+ "text": ";\n requestFullscreen(options?: "
1371
+ },
1372
+ {
1373
+ "kind": "Reference",
1374
+ "text": "FullscreenOptions",
1375
+ "canonicalReference": "!FullscreenOptions:interface"
1376
+ },
1377
+ {
1378
+ "kind": "Content",
1379
+ "text": "): "
1380
+ },
1381
+ {
1382
+ "kind": "Reference",
1383
+ "text": "Promise",
1384
+ "canonicalReference": "!Promise:interface"
1385
+ },
1386
+ {
1387
+ "kind": "Content",
1388
+ "text": "<void>;\n requestPointerLock(): void;\n scroll(options?: "
1389
+ },
1390
+ {
1391
+ "kind": "Reference",
1392
+ "text": "ScrollToOptions",
1393
+ "canonicalReference": "!ScrollToOptions:interface"
1394
+ },
1395
+ {
1396
+ "kind": "Content",
1397
+ "text": "): void;\n scroll(x: number, y: number): void;\n scrollBy(options?: "
1398
+ },
1399
+ {
1400
+ "kind": "Reference",
1401
+ "text": "ScrollToOptions",
1402
+ "canonicalReference": "!ScrollToOptions:interface"
1403
+ },
1404
+ {
1405
+ "kind": "Content",
1406
+ "text": "): void;\n scrollBy(x: number, y: number): void;\n scrollIntoView(arg?: boolean | "
1407
+ },
1408
+ {
1409
+ "kind": "Reference",
1410
+ "text": "ScrollIntoViewOptions",
1411
+ "canonicalReference": "!ScrollIntoViewOptions:interface"
1412
+ },
1413
+ {
1414
+ "kind": "Content",
1415
+ "text": "): void;\n scrollTo(options?: "
1416
+ },
1417
+ {
1418
+ "kind": "Reference",
1419
+ "text": "ScrollToOptions",
1420
+ "canonicalReference": "!ScrollToOptions:interface"
1421
+ },
1422
+ {
1423
+ "kind": "Content",
1424
+ "text": "): void;\n scrollTo(x: number, y: number): void;\n setAttribute(qualifiedName: string, value: string): void;\n setAttributeNS(namespace: string, qualifiedName: string, value: string): void;\n setAttributeNode(attr: "
1425
+ },
1426
+ {
1427
+ "kind": "Reference",
1428
+ "text": "Attr",
1429
+ "canonicalReference": "!Attr:interface"
1430
+ },
1431
+ {
1432
+ "kind": "Content",
1433
+ "text": "): "
1434
+ },
1435
+ {
1436
+ "kind": "Reference",
1437
+ "text": "Attr",
1438
+ "canonicalReference": "!Attr:interface"
1439
+ },
1440
+ {
1441
+ "kind": "Content",
1442
+ "text": ";\n setAttributeNodeNS(attr: "
1443
+ },
1444
+ {
1445
+ "kind": "Reference",
1446
+ "text": "Attr",
1447
+ "canonicalReference": "!Attr:interface"
1448
+ },
1449
+ {
1450
+ "kind": "Content",
1451
+ "text": "): "
1452
+ },
1453
+ {
1454
+ "kind": "Reference",
1455
+ "text": "Attr",
1456
+ "canonicalReference": "!Attr:interface"
1457
+ },
1458
+ {
1459
+ "kind": "Content",
1460
+ "text": ";\n setPointerCapture(pointerId: number): void;\n toggleAttribute(qualifiedName: string, force?: boolean): boolean;\n webkitMatchesSelector(selectors: string): boolean;\n readonly baseURI: string;\n readonly childNodes: "
1461
+ },
1462
+ {
1463
+ "kind": "Reference",
1464
+ "text": "NodeListOf",
1465
+ "canonicalReference": "!NodeListOf:interface"
1466
+ },
1467
+ {
1468
+ "kind": "Content",
1469
+ "text": "<"
1470
+ },
1471
+ {
1472
+ "kind": "Reference",
1473
+ "text": "ChildNode",
1474
+ "canonicalReference": "!ChildNode:interface"
1475
+ },
1476
+ {
1477
+ "kind": "Content",
1478
+ "text": ">;\n readonly firstChild: "
1479
+ },
1480
+ {
1481
+ "kind": "Reference",
1482
+ "text": "ChildNode",
1483
+ "canonicalReference": "!ChildNode:interface"
1484
+ },
1485
+ {
1486
+ "kind": "Content",
1487
+ "text": ";\n readonly isConnected: boolean;\n readonly lastChild: "
1488
+ },
1489
+ {
1490
+ "kind": "Reference",
1491
+ "text": "ChildNode",
1492
+ "canonicalReference": "!ChildNode:interface"
1493
+ },
1494
+ {
1495
+ "kind": "Content",
1496
+ "text": ";\n readonly nextSibling: "
1497
+ },
1498
+ {
1499
+ "kind": "Reference",
1500
+ "text": "ChildNode",
1501
+ "canonicalReference": "!ChildNode:interface"
1502
+ },
1503
+ {
1504
+ "kind": "Content",
1505
+ "text": ";\n readonly nodeName: string;\n readonly nodeType: number;\n nodeValue: string;\n readonly parentElement: "
1506
+ },
1507
+ {
1508
+ "kind": "Reference",
1509
+ "text": "HTMLElement",
1510
+ "canonicalReference": "!HTMLElement:interface"
1511
+ },
1512
+ {
1513
+ "kind": "Content",
1514
+ "text": ";\n readonly parentNode: "
1515
+ },
1516
+ {
1517
+ "kind": "Reference",
1518
+ "text": "ParentNode",
1519
+ "canonicalReference": "!ParentNode:interface"
1520
+ },
1521
+ {
1522
+ "kind": "Content",
1523
+ "text": ";\n readonly previousSibling: "
1524
+ },
1525
+ {
1526
+ "kind": "Reference",
1527
+ "text": "ChildNode",
1528
+ "canonicalReference": "!ChildNode:interface"
1529
+ },
1530
+ {
1531
+ "kind": "Content",
1532
+ "text": ";\n textContent: string;\n appendChild<T extends "
1533
+ },
1534
+ {
1535
+ "kind": "Reference",
1536
+ "text": "Node",
1537
+ "canonicalReference": "!Node:interface"
1538
+ },
1539
+ {
1540
+ "kind": "Content",
1541
+ "text": ">(node: T): T;\n cloneNode(deep?: boolean): "
1542
+ },
1543
+ {
1544
+ "kind": "Reference",
1545
+ "text": "Node",
1546
+ "canonicalReference": "!Node:interface"
1547
+ },
1548
+ {
1549
+ "kind": "Content",
1550
+ "text": ";\n compareDocumentPosition(other: "
1551
+ },
1552
+ {
1553
+ "kind": "Reference",
1554
+ "text": "Node",
1555
+ "canonicalReference": "!Node:interface"
1556
+ },
1557
+ {
1558
+ "kind": "Content",
1559
+ "text": "): number;\n contains(other: "
1560
+ },
1561
+ {
1562
+ "kind": "Reference",
1563
+ "text": "Node",
1564
+ "canonicalReference": "!Node:interface"
1565
+ },
1566
+ {
1567
+ "kind": "Content",
1568
+ "text": "): boolean;\n getRootNode(options?: "
1569
+ },
1570
+ {
1571
+ "kind": "Reference",
1572
+ "text": "GetRootNodeOptions",
1573
+ "canonicalReference": "!GetRootNodeOptions:interface"
1574
+ },
1575
+ {
1576
+ "kind": "Content",
1577
+ "text": "): "
1578
+ },
1579
+ {
1580
+ "kind": "Reference",
1581
+ "text": "Node",
1582
+ "canonicalReference": "!Node:interface"
1583
+ },
1584
+ {
1585
+ "kind": "Content",
1586
+ "text": ";\n hasChildNodes(): boolean;\n insertBefore<T_1 extends "
1587
+ },
1588
+ {
1589
+ "kind": "Reference",
1590
+ "text": "Node",
1591
+ "canonicalReference": "!Node:interface"
1592
+ },
1593
+ {
1594
+ "kind": "Content",
1595
+ "text": ">(node: T_1, child: "
1596
+ },
1597
+ {
1598
+ "kind": "Reference",
1599
+ "text": "Node",
1600
+ "canonicalReference": "!Node:interface"
1601
+ },
1602
+ {
1603
+ "kind": "Content",
1604
+ "text": "): T_1;\n isDefaultNamespace(namespace: string): boolean;\n isEqualNode(otherNode: "
1605
+ },
1606
+ {
1607
+ "kind": "Reference",
1608
+ "text": "Node",
1609
+ "canonicalReference": "!Node:interface"
1610
+ },
1611
+ {
1612
+ "kind": "Content",
1613
+ "text": "): boolean;\n isSameNode(otherNode: "
1614
+ },
1615
+ {
1616
+ "kind": "Reference",
1617
+ "text": "Node",
1618
+ "canonicalReference": "!Node:interface"
1619
+ },
1620
+ {
1621
+ "kind": "Content",
1622
+ "text": "): boolean;\n lookupNamespaceURI(prefix: string): string;\n lookupPrefix(namespace: string): string;\n normalize(): void;\n removeChild<T_2 extends "
1623
+ },
1624
+ {
1625
+ "kind": "Reference",
1626
+ "text": "Node",
1627
+ "canonicalReference": "!Node:interface"
1628
+ },
1629
+ {
1630
+ "kind": "Content",
1631
+ "text": ">(child: T_2): T_2;\n replaceChild<T_3 extends "
1632
+ },
1633
+ {
1634
+ "kind": "Reference",
1635
+ "text": "Node",
1636
+ "canonicalReference": "!Node:interface"
1637
+ },
1638
+ {
1639
+ "kind": "Content",
1640
+ "text": ">(node: "
1641
+ },
1642
+ {
1643
+ "kind": "Reference",
1644
+ "text": "Node",
1645
+ "canonicalReference": "!Node:interface"
1646
+ },
1647
+ {
1648
+ "kind": "Content",
1649
+ "text": ", child: T_3): T_3;\n readonly ATTRIBUTE_NODE: number;\n readonly CDATA_SECTION_NODE: number;\n readonly COMMENT_NODE: number;\n readonly DOCUMENT_FRAGMENT_NODE: number;\n readonly DOCUMENT_NODE: number;\n readonly DOCUMENT_POSITION_CONTAINED_BY: number;\n readonly DOCUMENT_POSITION_CONTAINS: number;\n readonly DOCUMENT_POSITION_DISCONNECTED: number;\n readonly DOCUMENT_POSITION_FOLLOWING: number;\n readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;\n readonly DOCUMENT_POSITION_PRECEDING: number;\n readonly DOCUMENT_TYPE_NODE: number;\n readonly ELEMENT_NODE: number;\n readonly ENTITY_NODE: number;\n readonly ENTITY_REFERENCE_NODE: number;\n readonly NOTATION_NODE: number;\n readonly PROCESSING_INSTRUCTION_NODE: number;\n readonly TEXT_NODE: number;\n dispatchEvent(event: "
1650
+ },
1651
+ {
1652
+ "kind": "Reference",
1653
+ "text": "Event",
1654
+ "canonicalReference": "!Event:interface"
1655
+ },
1656
+ {
1657
+ "kind": "Content",
1658
+ "text": "): boolean;\n ariaAtomic: string;\n ariaAutoComplete: string;\n ariaBusy: string;\n ariaChecked: string;\n ariaColCount: string;\n ariaColIndex: string;\n ariaColIndexText: string;\n ariaColSpan: string;\n ariaCurrent: string;\n ariaDisabled: string;\n ariaExpanded: string;\n ariaHasPopup: string;\n ariaHidden: string;\n ariaInvalid: string;\n ariaKeyShortcuts: string;\n ariaLabel: string;\n ariaLevel: string;\n ariaLive: string;\n ariaModal: string;\n ariaMultiLine: string;\n ariaMultiSelectable: string;\n ariaOrientation: string;\n ariaPlaceholder: string;\n ariaPosInSet: string;\n ariaPressed: string;\n ariaReadOnly: string;\n ariaRequired: string;\n ariaRoleDescription: string;\n ariaRowCount: string;\n ariaRowIndex: string;\n ariaRowIndexText: string;\n ariaRowSpan: string;\n ariaSelected: string;\n ariaSetSize: string;\n ariaSort: string;\n ariaValueMax: string;\n ariaValueMin: string;\n ariaValueNow: string;\n ariaValueText: string;\n role: string;\n animate(keyframes: "
1659
+ },
1660
+ {
1661
+ "kind": "Reference",
1662
+ "text": "Keyframe",
1663
+ "canonicalReference": "!Keyframe:interface"
1664
+ },
1665
+ {
1666
+ "kind": "Content",
1667
+ "text": "[] | "
1668
+ },
1669
+ {
1670
+ "kind": "Reference",
1671
+ "text": "PropertyIndexedKeyframes",
1672
+ "canonicalReference": "!PropertyIndexedKeyframes:interface"
1673
+ },
1674
+ {
1675
+ "kind": "Content",
1676
+ "text": ", options?: number | "
1677
+ },
1678
+ {
1679
+ "kind": "Reference",
1680
+ "text": "KeyframeAnimationOptions",
1681
+ "canonicalReference": "!KeyframeAnimationOptions:interface"
1682
+ },
1683
+ {
1684
+ "kind": "Content",
1685
+ "text": "): "
1686
+ },
1687
+ {
1688
+ "kind": "Reference",
1689
+ "text": "Animation",
1690
+ "canonicalReference": "!Animation:interface"
1691
+ },
1692
+ {
1693
+ "kind": "Content",
1694
+ "text": ";\n getAnimations(options?: "
1695
+ },
1696
+ {
1697
+ "kind": "Reference",
1698
+ "text": "GetAnimationsOptions",
1699
+ "canonicalReference": "!GetAnimationsOptions:interface"
1700
+ },
1701
+ {
1702
+ "kind": "Content",
1703
+ "text": "): "
1704
+ },
1705
+ {
1706
+ "kind": "Reference",
1707
+ "text": "Animation",
1708
+ "canonicalReference": "!Animation:interface"
1709
+ },
1710
+ {
1711
+ "kind": "Content",
1712
+ "text": "[];\n after(...nodes: (string | "
1713
+ },
1714
+ {
1715
+ "kind": "Reference",
1716
+ "text": "Node",
1717
+ "canonicalReference": "!Node:interface"
1718
+ },
1719
+ {
1720
+ "kind": "Content",
1721
+ "text": ")[]): void;\n before(...nodes: (string | "
1722
+ },
1723
+ {
1724
+ "kind": "Reference",
1725
+ "text": "Node",
1726
+ "canonicalReference": "!Node:interface"
1727
+ },
1728
+ {
1729
+ "kind": "Content",
1730
+ "text": ")[]): void;\n remove(): void;\n replaceWith(...nodes: (string | "
1731
+ },
1732
+ {
1733
+ "kind": "Reference",
1734
+ "text": "Node",
1735
+ "canonicalReference": "!Node:interface"
1736
+ },
1737
+ {
1738
+ "kind": "Content",
1739
+ "text": ")[]): void;\n innerHTML: string;\n readonly nextElementSibling: "
1740
+ },
1741
+ {
1742
+ "kind": "Reference",
1743
+ "text": "Element",
1744
+ "canonicalReference": "!Element:interface"
1745
+ },
1746
+ {
1747
+ "kind": "Content",
1748
+ "text": ";\n readonly previousElementSibling: "
1749
+ },
1750
+ {
1751
+ "kind": "Reference",
1752
+ "text": "Element",
1753
+ "canonicalReference": "!Element:interface"
1754
+ },
1755
+ {
1756
+ "kind": "Content",
1757
+ "text": ";\n readonly childElementCount: number;\n readonly children: "
1758
+ },
1759
+ {
1760
+ "kind": "Reference",
1761
+ "text": "HTMLCollection",
1762
+ "canonicalReference": "!HTMLCollection:interface"
1763
+ },
1764
+ {
1765
+ "kind": "Content",
1766
+ "text": ";\n readonly firstElementChild: "
1767
+ },
1768
+ {
1769
+ "kind": "Reference",
1770
+ "text": "Element",
1771
+ "canonicalReference": "!Element:interface"
1772
+ },
1773
+ {
1774
+ "kind": "Content",
1775
+ "text": ";\n readonly lastElementChild: "
1776
+ },
1777
+ {
1778
+ "kind": "Reference",
1779
+ "text": "Element",
1780
+ "canonicalReference": "!Element:interface"
1781
+ },
1782
+ {
1783
+ "kind": "Content",
1784
+ "text": ";\n append(...nodes: (string | "
1785
+ },
1786
+ {
1787
+ "kind": "Reference",
1788
+ "text": "Node",
1789
+ "canonicalReference": "!Node:interface"
1790
+ },
1791
+ {
1792
+ "kind": "Content",
1793
+ "text": ")[]): void;\n prepend(...nodes: (string | "
1794
+ },
1795
+ {
1796
+ "kind": "Reference",
1797
+ "text": "Node",
1798
+ "canonicalReference": "!Node:interface"
1799
+ },
1800
+ {
1801
+ "kind": "Content",
1802
+ "text": ")[]): void;\n querySelector<K_7 extends keyof "
1803
+ },
1804
+ {
1805
+ "kind": "Reference",
1806
+ "text": "HTMLElementTagNameMap",
1807
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1808
+ },
1809
+ {
1810
+ "kind": "Content",
1811
+ "text": ">(selectors: K_7): "
1812
+ },
1813
+ {
1814
+ "kind": "Reference",
1815
+ "text": "HTMLElementTagNameMap",
1816
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1817
+ },
1818
+ {
1819
+ "kind": "Content",
1820
+ "text": "[K_7];\n querySelector<K_8 extends keyof "
1821
+ },
1822
+ {
1823
+ "kind": "Reference",
1824
+ "text": "SVGElementTagNameMap",
1825
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1826
+ },
1827
+ {
1828
+ "kind": "Content",
1829
+ "text": ">(selectors: K_8): "
1830
+ },
1831
+ {
1832
+ "kind": "Reference",
1833
+ "text": "SVGElementTagNameMap",
1834
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1835
+ },
1836
+ {
1837
+ "kind": "Content",
1838
+ "text": "[K_8];\n querySelector<E_1 extends "
1839
+ },
1840
+ {
1841
+ "kind": "Reference",
1842
+ "text": "Element",
1843
+ "canonicalReference": "!Element:interface"
1844
+ },
1845
+ {
1846
+ "kind": "Content",
1847
+ "text": " = "
1848
+ },
1849
+ {
1850
+ "kind": "Reference",
1851
+ "text": "Element",
1852
+ "canonicalReference": "!Element:interface"
1853
+ },
1854
+ {
1855
+ "kind": "Content",
1856
+ "text": ">(selectors: string): E_1;\n querySelectorAll<K_9 extends keyof "
1857
+ },
1858
+ {
1859
+ "kind": "Reference",
1860
+ "text": "HTMLElementTagNameMap",
1861
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1862
+ },
1863
+ {
1864
+ "kind": "Content",
1865
+ "text": ">(selectors: K_9): "
1866
+ },
1867
+ {
1868
+ "kind": "Reference",
1869
+ "text": "NodeListOf",
1870
+ "canonicalReference": "!NodeListOf:interface"
1871
+ },
1872
+ {
1873
+ "kind": "Content",
1874
+ "text": "<"
1875
+ },
1876
+ {
1877
+ "kind": "Reference",
1878
+ "text": "HTMLElementTagNameMap",
1879
+ "canonicalReference": "!HTMLElementTagNameMap:interface"
1880
+ },
1881
+ {
1882
+ "kind": "Content",
1883
+ "text": "[K_9]>;\n querySelectorAll<K_10 extends keyof "
1884
+ },
1885
+ {
1886
+ "kind": "Reference",
1887
+ "text": "SVGElementTagNameMap",
1888
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1889
+ },
1890
+ {
1891
+ "kind": "Content",
1892
+ "text": ">(selectors: K_10): "
1893
+ },
1894
+ {
1895
+ "kind": "Reference",
1896
+ "text": "NodeListOf",
1897
+ "canonicalReference": "!NodeListOf:interface"
1898
+ },
1899
+ {
1900
+ "kind": "Content",
1901
+ "text": "<"
1902
+ },
1903
+ {
1904
+ "kind": "Reference",
1905
+ "text": "SVGElementTagNameMap",
1906
+ "canonicalReference": "!SVGElementTagNameMap:interface"
1907
+ },
1908
+ {
1909
+ "kind": "Content",
1910
+ "text": "[K_10]>;\n querySelectorAll<E_2 extends "
1911
+ },
1912
+ {
1913
+ "kind": "Reference",
1914
+ "text": "Element",
1915
+ "canonicalReference": "!Element:interface"
1916
+ },
1917
+ {
1918
+ "kind": "Content",
1919
+ "text": " = "
1920
+ },
1921
+ {
1922
+ "kind": "Reference",
1923
+ "text": "Element",
1924
+ "canonicalReference": "!Element:interface"
1925
+ },
1926
+ {
1927
+ "kind": "Content",
1928
+ "text": ">(selectors: string): "
1929
+ },
1930
+ {
1931
+ "kind": "Reference",
1932
+ "text": "NodeListOf",
1933
+ "canonicalReference": "!NodeListOf:interface"
1934
+ },
1935
+ {
1936
+ "kind": "Content",
1937
+ "text": "<E_2>;\n replaceChildren(...nodes: (string | "
1938
+ },
1939
+ {
1940
+ "kind": "Reference",
1941
+ "text": "Node",
1942
+ "canonicalReference": "!Node:interface"
1943
+ },
1944
+ {
1945
+ "kind": "Content",
1946
+ "text": ")[]): void;\n readonly assignedSlot: "
1947
+ },
1948
+ {
1949
+ "kind": "Reference",
1950
+ "text": "HTMLSlotElement",
1951
+ "canonicalReference": "!HTMLSlotElement:interface"
1952
+ },
1953
+ {
1954
+ "kind": "Content",
1955
+ "text": ";\n oncopy: (this: "
1956
+ },
1957
+ {
1958
+ "kind": "Reference",
1959
+ "text": "DocumentAndElementEventHandlers",
1960
+ "canonicalReference": "!DocumentAndElementEventHandlers:interface"
1961
+ },
1962
+ {
1963
+ "kind": "Content",
1964
+ "text": ", ev: "
1965
+ },
1966
+ {
1967
+ "kind": "Reference",
1968
+ "text": "ClipboardEvent",
1969
+ "canonicalReference": "!ClipboardEvent:interface"
1970
+ },
1971
+ {
1972
+ "kind": "Content",
1973
+ "text": ") => any;\n oncut: (this: "
1974
+ },
1975
+ {
1976
+ "kind": "Reference",
1977
+ "text": "DocumentAndElementEventHandlers",
1978
+ "canonicalReference": "!DocumentAndElementEventHandlers:interface"
1979
+ },
1980
+ {
1981
+ "kind": "Content",
1982
+ "text": ", ev: "
1983
+ },
1984
+ {
1985
+ "kind": "Reference",
1986
+ "text": "ClipboardEvent",
1987
+ "canonicalReference": "!ClipboardEvent:interface"
1988
+ },
1989
+ {
1990
+ "kind": "Content",
1991
+ "text": ") => any;\n onpaste: (this: "
1992
+ },
1993
+ {
1994
+ "kind": "Reference",
1995
+ "text": "DocumentAndElementEventHandlers",
1996
+ "canonicalReference": "!DocumentAndElementEventHandlers:interface"
1997
+ },
1998
+ {
1999
+ "kind": "Content",
2000
+ "text": ", ev: "
2001
+ },
2002
+ {
2003
+ "kind": "Reference",
2004
+ "text": "ClipboardEvent",
2005
+ "canonicalReference": "!ClipboardEvent:interface"
2006
+ },
2007
+ {
2008
+ "kind": "Content",
2009
+ "text": ") => any;\n readonly style: "
2010
+ },
2011
+ {
2012
+ "kind": "Reference",
2013
+ "text": "CSSStyleDeclaration",
2014
+ "canonicalReference": "!CSSStyleDeclaration:interface"
2015
+ },
2016
+ {
2017
+ "kind": "Content",
2018
+ "text": ";\n contentEditable: string;\n enterKeyHint: string;\n inputMode: string;\n readonly isContentEditable: boolean;\n onabort: (this: "
2019
+ },
2020
+ {
2021
+ "kind": "Reference",
2022
+ "text": "GlobalEventHandlers",
2023
+ "canonicalReference": "!GlobalEventHandlers:interface"
2024
+ },
2025
+ {
2026
+ "kind": "Content",
2027
+ "text": ", ev: "
2028
+ },
2029
+ {
2030
+ "kind": "Reference",
2031
+ "text": "UIEvent",
2032
+ "canonicalReference": "!UIEvent:interface"
2033
+ },
2034
+ {
2035
+ "kind": "Content",
2036
+ "text": ") => any;\n onanimationcancel: (this: "
2037
+ },
2038
+ {
2039
+ "kind": "Reference",
2040
+ "text": "GlobalEventHandlers",
2041
+ "canonicalReference": "!GlobalEventHandlers:interface"
2042
+ },
2043
+ {
2044
+ "kind": "Content",
2045
+ "text": ", ev: "
2046
+ },
2047
+ {
2048
+ "kind": "Reference",
2049
+ "text": "AnimationEvent",
2050
+ "canonicalReference": "!AnimationEvent:interface"
2051
+ },
2052
+ {
2053
+ "kind": "Content",
2054
+ "text": ") => any;\n onanimationend: (this: "
2055
+ },
2056
+ {
2057
+ "kind": "Reference",
2058
+ "text": "GlobalEventHandlers",
2059
+ "canonicalReference": "!GlobalEventHandlers:interface"
2060
+ },
2061
+ {
2062
+ "kind": "Content",
2063
+ "text": ", ev: "
2064
+ },
2065
+ {
2066
+ "kind": "Reference",
2067
+ "text": "AnimationEvent",
2068
+ "canonicalReference": "!AnimationEvent:interface"
2069
+ },
2070
+ {
2071
+ "kind": "Content",
2072
+ "text": ") => any;\n onanimationiteration: (this: "
2073
+ },
2074
+ {
2075
+ "kind": "Reference",
2076
+ "text": "GlobalEventHandlers",
2077
+ "canonicalReference": "!GlobalEventHandlers:interface"
2078
+ },
2079
+ {
2080
+ "kind": "Content",
2081
+ "text": ", ev: "
2082
+ },
2083
+ {
2084
+ "kind": "Reference",
2085
+ "text": "AnimationEvent",
2086
+ "canonicalReference": "!AnimationEvent:interface"
2087
+ },
2088
+ {
2089
+ "kind": "Content",
2090
+ "text": ") => any;\n onanimationstart: (this: "
2091
+ },
2092
+ {
2093
+ "kind": "Reference",
2094
+ "text": "GlobalEventHandlers",
2095
+ "canonicalReference": "!GlobalEventHandlers:interface"
2096
+ },
2097
+ {
2098
+ "kind": "Content",
2099
+ "text": ", ev: "
2100
+ },
2101
+ {
2102
+ "kind": "Reference",
2103
+ "text": "AnimationEvent",
2104
+ "canonicalReference": "!AnimationEvent:interface"
2105
+ },
2106
+ {
2107
+ "kind": "Content",
2108
+ "text": ") => any;\n onauxclick: (this: "
2109
+ },
2110
+ {
2111
+ "kind": "Reference",
2112
+ "text": "GlobalEventHandlers",
2113
+ "canonicalReference": "!GlobalEventHandlers:interface"
2114
+ },
2115
+ {
2116
+ "kind": "Content",
2117
+ "text": ", ev: "
2118
+ },
2119
+ {
2120
+ "kind": "Reference",
2121
+ "text": "MouseEvent",
2122
+ "canonicalReference": "!MouseEvent:interface"
2123
+ },
2124
+ {
2125
+ "kind": "Content",
2126
+ "text": ") => any;\n onbeforeinput: (this: "
2127
+ },
2128
+ {
2129
+ "kind": "Reference",
2130
+ "text": "GlobalEventHandlers",
2131
+ "canonicalReference": "!GlobalEventHandlers:interface"
2132
+ },
2133
+ {
2134
+ "kind": "Content",
2135
+ "text": ", ev: "
2136
+ },
2137
+ {
2138
+ "kind": "Reference",
2139
+ "text": "InputEvent",
2140
+ "canonicalReference": "!InputEvent:interface"
2141
+ },
2142
+ {
2143
+ "kind": "Content",
2144
+ "text": ") => any;\n onblur: (this: "
2145
+ },
2146
+ {
2147
+ "kind": "Reference",
2148
+ "text": "GlobalEventHandlers",
2149
+ "canonicalReference": "!GlobalEventHandlers:interface"
2150
+ },
2151
+ {
2152
+ "kind": "Content",
2153
+ "text": ", ev: "
2154
+ },
2155
+ {
2156
+ "kind": "Reference",
2157
+ "text": "FocusEvent",
2158
+ "canonicalReference": "!FocusEvent:interface"
2159
+ },
2160
+ {
2161
+ "kind": "Content",
2162
+ "text": ") => any;\n oncancel: (this: "
2163
+ },
2164
+ {
2165
+ "kind": "Reference",
2166
+ "text": "GlobalEventHandlers",
2167
+ "canonicalReference": "!GlobalEventHandlers:interface"
2168
+ },
2169
+ {
2170
+ "kind": "Content",
2171
+ "text": ", ev: "
2172
+ },
2173
+ {
2174
+ "kind": "Reference",
2175
+ "text": "Event",
2176
+ "canonicalReference": "!Event:interface"
2177
+ },
2178
+ {
2179
+ "kind": "Content",
2180
+ "text": ") => any;\n oncanplay: (this: "
2181
+ },
2182
+ {
2183
+ "kind": "Reference",
2184
+ "text": "GlobalEventHandlers",
2185
+ "canonicalReference": "!GlobalEventHandlers:interface"
2186
+ },
2187
+ {
2188
+ "kind": "Content",
2189
+ "text": ", ev: "
2190
+ },
2191
+ {
2192
+ "kind": "Reference",
2193
+ "text": "Event",
2194
+ "canonicalReference": "!Event:interface"
2195
+ },
2196
+ {
2197
+ "kind": "Content",
2198
+ "text": ") => any;\n oncanplaythrough: (this: "
2199
+ },
2200
+ {
2201
+ "kind": "Reference",
2202
+ "text": "GlobalEventHandlers",
2203
+ "canonicalReference": "!GlobalEventHandlers:interface"
2204
+ },
2205
+ {
2206
+ "kind": "Content",
2207
+ "text": ", ev: "
2208
+ },
2209
+ {
2210
+ "kind": "Reference",
2211
+ "text": "Event",
2212
+ "canonicalReference": "!Event:interface"
2213
+ },
2214
+ {
2215
+ "kind": "Content",
2216
+ "text": ") => any;\n onchange: (this: "
2217
+ },
2218
+ {
2219
+ "kind": "Reference",
2220
+ "text": "GlobalEventHandlers",
2221
+ "canonicalReference": "!GlobalEventHandlers:interface"
2222
+ },
2223
+ {
2224
+ "kind": "Content",
2225
+ "text": ", ev: "
2226
+ },
2227
+ {
2228
+ "kind": "Reference",
2229
+ "text": "Event",
2230
+ "canonicalReference": "!Event:interface"
2231
+ },
2232
+ {
2233
+ "kind": "Content",
2234
+ "text": ") => any;\n onclick: (this: "
2235
+ },
2236
+ {
2237
+ "kind": "Reference",
2238
+ "text": "GlobalEventHandlers",
2239
+ "canonicalReference": "!GlobalEventHandlers:interface"
2240
+ },
2241
+ {
2242
+ "kind": "Content",
2243
+ "text": ", ev: "
2244
+ },
2245
+ {
2246
+ "kind": "Reference",
2247
+ "text": "MouseEvent",
2248
+ "canonicalReference": "!MouseEvent:interface"
2249
+ },
2250
+ {
2251
+ "kind": "Content",
2252
+ "text": ") => any;\n onclose: (this: "
2253
+ },
2254
+ {
2255
+ "kind": "Reference",
2256
+ "text": "GlobalEventHandlers",
2257
+ "canonicalReference": "!GlobalEventHandlers:interface"
2258
+ },
2259
+ {
2260
+ "kind": "Content",
2261
+ "text": ", ev: "
2262
+ },
2263
+ {
2264
+ "kind": "Reference",
2265
+ "text": "Event",
2266
+ "canonicalReference": "!Event:interface"
2267
+ },
2268
+ {
2269
+ "kind": "Content",
2270
+ "text": ") => any;\n oncontextmenu: (this: "
2271
+ },
2272
+ {
2273
+ "kind": "Reference",
2274
+ "text": "GlobalEventHandlers",
2275
+ "canonicalReference": "!GlobalEventHandlers:interface"
2276
+ },
2277
+ {
2278
+ "kind": "Content",
2279
+ "text": ", ev: "
2280
+ },
2281
+ {
2282
+ "kind": "Reference",
2283
+ "text": "MouseEvent",
2284
+ "canonicalReference": "!MouseEvent:interface"
2285
+ },
2286
+ {
2287
+ "kind": "Content",
2288
+ "text": ") => any;\n oncuechange: (this: "
2289
+ },
2290
+ {
2291
+ "kind": "Reference",
2292
+ "text": "GlobalEventHandlers",
2293
+ "canonicalReference": "!GlobalEventHandlers:interface"
2294
+ },
2295
+ {
2296
+ "kind": "Content",
2297
+ "text": ", ev: "
2298
+ },
2299
+ {
2300
+ "kind": "Reference",
2301
+ "text": "Event",
2302
+ "canonicalReference": "!Event:interface"
2303
+ },
2304
+ {
2305
+ "kind": "Content",
2306
+ "text": ") => any;\n ondblclick: (this: "
2307
+ },
2308
+ {
2309
+ "kind": "Reference",
2310
+ "text": "GlobalEventHandlers",
2311
+ "canonicalReference": "!GlobalEventHandlers:interface"
2312
+ },
2313
+ {
2314
+ "kind": "Content",
2315
+ "text": ", ev: "
2316
+ },
2317
+ {
2318
+ "kind": "Reference",
2319
+ "text": "MouseEvent",
2320
+ "canonicalReference": "!MouseEvent:interface"
2321
+ },
2322
+ {
2323
+ "kind": "Content",
2324
+ "text": ") => any;\n ondrag: (this: "
2325
+ },
2326
+ {
2327
+ "kind": "Reference",
2328
+ "text": "GlobalEventHandlers",
2329
+ "canonicalReference": "!GlobalEventHandlers:interface"
2330
+ },
2331
+ {
2332
+ "kind": "Content",
2333
+ "text": ", ev: "
2334
+ },
2335
+ {
2336
+ "kind": "Reference",
2337
+ "text": "DragEvent",
2338
+ "canonicalReference": "!DragEvent:interface"
2339
+ },
2340
+ {
2341
+ "kind": "Content",
2342
+ "text": ") => any;\n ondragend: (this: "
2343
+ },
2344
+ {
2345
+ "kind": "Reference",
2346
+ "text": "GlobalEventHandlers",
2347
+ "canonicalReference": "!GlobalEventHandlers:interface"
2348
+ },
2349
+ {
2350
+ "kind": "Content",
2351
+ "text": ", ev: "
2352
+ },
2353
+ {
2354
+ "kind": "Reference",
2355
+ "text": "DragEvent",
2356
+ "canonicalReference": "!DragEvent:interface"
2357
+ },
2358
+ {
2359
+ "kind": "Content",
2360
+ "text": ") => any;\n ondragenter: (this: "
2361
+ },
2362
+ {
2363
+ "kind": "Reference",
2364
+ "text": "GlobalEventHandlers",
2365
+ "canonicalReference": "!GlobalEventHandlers:interface"
2366
+ },
2367
+ {
2368
+ "kind": "Content",
2369
+ "text": ", ev: "
2370
+ },
2371
+ {
2372
+ "kind": "Reference",
2373
+ "text": "DragEvent",
2374
+ "canonicalReference": "!DragEvent:interface"
2375
+ },
2376
+ {
2377
+ "kind": "Content",
2378
+ "text": ") => any;\n ondragleave: (this: "
2379
+ },
2380
+ {
2381
+ "kind": "Reference",
2382
+ "text": "GlobalEventHandlers",
2383
+ "canonicalReference": "!GlobalEventHandlers:interface"
2384
+ },
2385
+ {
2386
+ "kind": "Content",
2387
+ "text": ", ev: "
2388
+ },
2389
+ {
2390
+ "kind": "Reference",
2391
+ "text": "DragEvent",
2392
+ "canonicalReference": "!DragEvent:interface"
2393
+ },
2394
+ {
2395
+ "kind": "Content",
2396
+ "text": ") => any;\n ondragover: (this: "
2397
+ },
2398
+ {
2399
+ "kind": "Reference",
2400
+ "text": "GlobalEventHandlers",
2401
+ "canonicalReference": "!GlobalEventHandlers:interface"
2402
+ },
2403
+ {
2404
+ "kind": "Content",
2405
+ "text": ", ev: "
2406
+ },
2407
+ {
2408
+ "kind": "Reference",
2409
+ "text": "DragEvent",
2410
+ "canonicalReference": "!DragEvent:interface"
2411
+ },
2412
+ {
2413
+ "kind": "Content",
2414
+ "text": ") => any;\n ondragstart: (this: "
2415
+ },
2416
+ {
2417
+ "kind": "Reference",
2418
+ "text": "GlobalEventHandlers",
2419
+ "canonicalReference": "!GlobalEventHandlers:interface"
2420
+ },
2421
+ {
2422
+ "kind": "Content",
2423
+ "text": ", ev: "
2424
+ },
2425
+ {
2426
+ "kind": "Reference",
2427
+ "text": "DragEvent",
2428
+ "canonicalReference": "!DragEvent:interface"
2429
+ },
2430
+ {
2431
+ "kind": "Content",
2432
+ "text": ") => any;\n ondrop: (this: "
2433
+ },
2434
+ {
2435
+ "kind": "Reference",
2436
+ "text": "GlobalEventHandlers",
2437
+ "canonicalReference": "!GlobalEventHandlers:interface"
2438
+ },
2439
+ {
2440
+ "kind": "Content",
2441
+ "text": ", ev: "
2442
+ },
2443
+ {
2444
+ "kind": "Reference",
2445
+ "text": "DragEvent",
2446
+ "canonicalReference": "!DragEvent:interface"
2447
+ },
2448
+ {
2449
+ "kind": "Content",
2450
+ "text": ") => any;\n ondurationchange: (this: "
2451
+ },
2452
+ {
2453
+ "kind": "Reference",
2454
+ "text": "GlobalEventHandlers",
2455
+ "canonicalReference": "!GlobalEventHandlers:interface"
2456
+ },
2457
+ {
2458
+ "kind": "Content",
2459
+ "text": ", ev: "
2460
+ },
2461
+ {
2462
+ "kind": "Reference",
2463
+ "text": "Event",
2464
+ "canonicalReference": "!Event:interface"
2465
+ },
2466
+ {
2467
+ "kind": "Content",
2468
+ "text": ") => any;\n onemptied: (this: "
2469
+ },
2470
+ {
2471
+ "kind": "Reference",
2472
+ "text": "GlobalEventHandlers",
2473
+ "canonicalReference": "!GlobalEventHandlers:interface"
2474
+ },
2475
+ {
2476
+ "kind": "Content",
2477
+ "text": ", ev: "
2478
+ },
2479
+ {
2480
+ "kind": "Reference",
2481
+ "text": "Event",
2482
+ "canonicalReference": "!Event:interface"
2483
+ },
2484
+ {
2485
+ "kind": "Content",
2486
+ "text": ") => any;\n onended: (this: "
2487
+ },
2488
+ {
2489
+ "kind": "Reference",
2490
+ "text": "GlobalEventHandlers",
2491
+ "canonicalReference": "!GlobalEventHandlers:interface"
2492
+ },
2493
+ {
2494
+ "kind": "Content",
2495
+ "text": ", ev: "
2496
+ },
2497
+ {
2498
+ "kind": "Reference",
2499
+ "text": "Event",
2500
+ "canonicalReference": "!Event:interface"
2501
+ },
2502
+ {
2503
+ "kind": "Content",
2504
+ "text": ") => any;\n onerror: "
2505
+ },
2506
+ {
2507
+ "kind": "Reference",
2508
+ "text": "OnErrorEventHandlerNonNull",
2509
+ "canonicalReference": "!OnErrorEventHandlerNonNull:interface"
2510
+ },
2511
+ {
2512
+ "kind": "Content",
2513
+ "text": ";\n onfocus: (this: "
2514
+ },
2515
+ {
2516
+ "kind": "Reference",
2517
+ "text": "GlobalEventHandlers",
2518
+ "canonicalReference": "!GlobalEventHandlers:interface"
2519
+ },
2520
+ {
2521
+ "kind": "Content",
2522
+ "text": ", ev: "
2523
+ },
2524
+ {
2525
+ "kind": "Reference",
2526
+ "text": "FocusEvent",
2527
+ "canonicalReference": "!FocusEvent:interface"
2528
+ },
2529
+ {
2530
+ "kind": "Content",
2531
+ "text": ") => any;\n onformdata: (this: "
2532
+ },
2533
+ {
2534
+ "kind": "Reference",
2535
+ "text": "GlobalEventHandlers",
2536
+ "canonicalReference": "!GlobalEventHandlers:interface"
2537
+ },
2538
+ {
2539
+ "kind": "Content",
2540
+ "text": ", ev: "
2541
+ },
2542
+ {
2543
+ "kind": "Reference",
2544
+ "text": "FormDataEvent",
2545
+ "canonicalReference": "!FormDataEvent:interface"
2546
+ },
2547
+ {
2548
+ "kind": "Content",
2549
+ "text": ") => any;\n ongotpointercapture: (this: "
2550
+ },
2551
+ {
2552
+ "kind": "Reference",
2553
+ "text": "GlobalEventHandlers",
2554
+ "canonicalReference": "!GlobalEventHandlers:interface"
2555
+ },
2556
+ {
2557
+ "kind": "Content",
2558
+ "text": ", ev: "
2559
+ },
2560
+ {
2561
+ "kind": "Reference",
2562
+ "text": "PointerEvent",
2563
+ "canonicalReference": "!PointerEvent:interface"
2564
+ },
2565
+ {
2566
+ "kind": "Content",
2567
+ "text": ") => any;\n oninput: (this: "
2568
+ },
2569
+ {
2570
+ "kind": "Reference",
2571
+ "text": "GlobalEventHandlers",
2572
+ "canonicalReference": "!GlobalEventHandlers:interface"
2573
+ },
2574
+ {
2575
+ "kind": "Content",
2576
+ "text": ", ev: "
2577
+ },
2578
+ {
2579
+ "kind": "Reference",
2580
+ "text": "Event",
2581
+ "canonicalReference": "!Event:interface"
2582
+ },
2583
+ {
2584
+ "kind": "Content",
2585
+ "text": ") => any;\n oninvalid: (this: "
2586
+ },
2587
+ {
2588
+ "kind": "Reference",
2589
+ "text": "GlobalEventHandlers",
2590
+ "canonicalReference": "!GlobalEventHandlers:interface"
2591
+ },
2592
+ {
2593
+ "kind": "Content",
2594
+ "text": ", ev: "
2595
+ },
2596
+ {
2597
+ "kind": "Reference",
2598
+ "text": "Event",
2599
+ "canonicalReference": "!Event:interface"
2600
+ },
2601
+ {
2602
+ "kind": "Content",
2603
+ "text": ") => any;\n onkeydown: (this: "
2604
+ },
2605
+ {
2606
+ "kind": "Reference",
2607
+ "text": "GlobalEventHandlers",
2608
+ "canonicalReference": "!GlobalEventHandlers:interface"
2609
+ },
2610
+ {
2611
+ "kind": "Content",
2612
+ "text": ", ev: "
2613
+ },
2614
+ {
2615
+ "kind": "Reference",
2616
+ "text": "KeyboardEvent",
2617
+ "canonicalReference": "!KeyboardEvent:interface"
2618
+ },
2619
+ {
2620
+ "kind": "Content",
2621
+ "text": ") => any;\n onkeypress: (this: "
2622
+ },
2623
+ {
2624
+ "kind": "Reference",
2625
+ "text": "GlobalEventHandlers",
2626
+ "canonicalReference": "!GlobalEventHandlers:interface"
2627
+ },
2628
+ {
2629
+ "kind": "Content",
2630
+ "text": ", ev: "
2631
+ },
2632
+ {
2633
+ "kind": "Reference",
2634
+ "text": "KeyboardEvent",
2635
+ "canonicalReference": "!KeyboardEvent:interface"
2636
+ },
2637
+ {
2638
+ "kind": "Content",
2639
+ "text": ") => any;\n onkeyup: (this: "
2640
+ },
2641
+ {
2642
+ "kind": "Reference",
2643
+ "text": "GlobalEventHandlers",
2644
+ "canonicalReference": "!GlobalEventHandlers:interface"
2645
+ },
2646
+ {
2647
+ "kind": "Content",
2648
+ "text": ", ev: "
2649
+ },
2650
+ {
2651
+ "kind": "Reference",
2652
+ "text": "KeyboardEvent",
2653
+ "canonicalReference": "!KeyboardEvent:interface"
2654
+ },
2655
+ {
2656
+ "kind": "Content",
2657
+ "text": ") => any;\n onload: (this: "
2658
+ },
2659
+ {
2660
+ "kind": "Reference",
2661
+ "text": "GlobalEventHandlers",
2662
+ "canonicalReference": "!GlobalEventHandlers:interface"
2663
+ },
2664
+ {
2665
+ "kind": "Content",
2666
+ "text": ", ev: "
2667
+ },
2668
+ {
2669
+ "kind": "Reference",
2670
+ "text": "Event",
2671
+ "canonicalReference": "!Event:interface"
2672
+ },
2673
+ {
2674
+ "kind": "Content",
2675
+ "text": ") => any;\n onloadeddata: (this: "
2676
+ },
2677
+ {
2678
+ "kind": "Reference",
2679
+ "text": "GlobalEventHandlers",
2680
+ "canonicalReference": "!GlobalEventHandlers:interface"
2681
+ },
2682
+ {
2683
+ "kind": "Content",
2684
+ "text": ", ev: "
2685
+ },
2686
+ {
2687
+ "kind": "Reference",
2688
+ "text": "Event",
2689
+ "canonicalReference": "!Event:interface"
2690
+ },
2691
+ {
2692
+ "kind": "Content",
2693
+ "text": ") => any;\n onloadedmetadata: (this: "
2694
+ },
2695
+ {
2696
+ "kind": "Reference",
2697
+ "text": "GlobalEventHandlers",
2698
+ "canonicalReference": "!GlobalEventHandlers:interface"
2699
+ },
2700
+ {
2701
+ "kind": "Content",
2702
+ "text": ", ev: "
2703
+ },
2704
+ {
2705
+ "kind": "Reference",
2706
+ "text": "Event",
2707
+ "canonicalReference": "!Event:interface"
2708
+ },
2709
+ {
2710
+ "kind": "Content",
2711
+ "text": ") => any;\n onloadstart: (this: "
2712
+ },
2713
+ {
2714
+ "kind": "Reference",
2715
+ "text": "GlobalEventHandlers",
2716
+ "canonicalReference": "!GlobalEventHandlers:interface"
2717
+ },
2718
+ {
2719
+ "kind": "Content",
2720
+ "text": ", ev: "
2721
+ },
2722
+ {
2723
+ "kind": "Reference",
2724
+ "text": "Event",
2725
+ "canonicalReference": "!Event:interface"
2726
+ },
2727
+ {
2728
+ "kind": "Content",
2729
+ "text": ") => any;\n onlostpointercapture: (this: "
2730
+ },
2731
+ {
2732
+ "kind": "Reference",
2733
+ "text": "GlobalEventHandlers",
2734
+ "canonicalReference": "!GlobalEventHandlers:interface"
2735
+ },
2736
+ {
2737
+ "kind": "Content",
2738
+ "text": ", ev: "
2739
+ },
2740
+ {
2741
+ "kind": "Reference",
2742
+ "text": "PointerEvent",
2743
+ "canonicalReference": "!PointerEvent:interface"
2744
+ },
2745
+ {
2746
+ "kind": "Content",
2747
+ "text": ") => any;\n onmousedown: (this: "
2748
+ },
2749
+ {
2750
+ "kind": "Reference",
2751
+ "text": "GlobalEventHandlers",
2752
+ "canonicalReference": "!GlobalEventHandlers:interface"
2753
+ },
2754
+ {
2755
+ "kind": "Content",
2756
+ "text": ", ev: "
2757
+ },
2758
+ {
2759
+ "kind": "Reference",
2760
+ "text": "MouseEvent",
2761
+ "canonicalReference": "!MouseEvent:interface"
2762
+ },
2763
+ {
2764
+ "kind": "Content",
2765
+ "text": ") => any;\n onmouseenter: (this: "
2766
+ },
2767
+ {
2768
+ "kind": "Reference",
2769
+ "text": "GlobalEventHandlers",
2770
+ "canonicalReference": "!GlobalEventHandlers:interface"
2771
+ },
2772
+ {
2773
+ "kind": "Content",
2774
+ "text": ", ev: "
2775
+ },
2776
+ {
2777
+ "kind": "Reference",
2778
+ "text": "MouseEvent",
2779
+ "canonicalReference": "!MouseEvent:interface"
2780
+ },
2781
+ {
2782
+ "kind": "Content",
2783
+ "text": ") => any;\n onmouseleave: (this: "
2784
+ },
2785
+ {
2786
+ "kind": "Reference",
2787
+ "text": "GlobalEventHandlers",
2788
+ "canonicalReference": "!GlobalEventHandlers:interface"
2789
+ },
2790
+ {
2791
+ "kind": "Content",
2792
+ "text": ", ev: "
2793
+ },
2794
+ {
2795
+ "kind": "Reference",
2796
+ "text": "MouseEvent",
2797
+ "canonicalReference": "!MouseEvent:interface"
2798
+ },
2799
+ {
2800
+ "kind": "Content",
2801
+ "text": ") => any;\n onmousemove: (this: "
2802
+ },
2803
+ {
2804
+ "kind": "Reference",
2805
+ "text": "GlobalEventHandlers",
2806
+ "canonicalReference": "!GlobalEventHandlers:interface"
2807
+ },
2808
+ {
2809
+ "kind": "Content",
2810
+ "text": ", ev: "
2811
+ },
2812
+ {
2813
+ "kind": "Reference",
2814
+ "text": "MouseEvent",
2815
+ "canonicalReference": "!MouseEvent:interface"
2816
+ },
2817
+ {
2818
+ "kind": "Content",
2819
+ "text": ") => any;\n onmouseout: (this: "
2820
+ },
2821
+ {
2822
+ "kind": "Reference",
2823
+ "text": "GlobalEventHandlers",
2824
+ "canonicalReference": "!GlobalEventHandlers:interface"
2825
+ },
2826
+ {
2827
+ "kind": "Content",
2828
+ "text": ", ev: "
2829
+ },
2830
+ {
2831
+ "kind": "Reference",
2832
+ "text": "MouseEvent",
2833
+ "canonicalReference": "!MouseEvent:interface"
2834
+ },
2835
+ {
2836
+ "kind": "Content",
2837
+ "text": ") => any;\n onmouseover: (this: "
2838
+ },
2839
+ {
2840
+ "kind": "Reference",
2841
+ "text": "GlobalEventHandlers",
2842
+ "canonicalReference": "!GlobalEventHandlers:interface"
2843
+ },
2844
+ {
2845
+ "kind": "Content",
2846
+ "text": ", ev: "
2847
+ },
2848
+ {
2849
+ "kind": "Reference",
2850
+ "text": "MouseEvent",
2851
+ "canonicalReference": "!MouseEvent:interface"
2852
+ },
2853
+ {
2854
+ "kind": "Content",
2855
+ "text": ") => any;\n onmouseup: (this: "
2856
+ },
2857
+ {
2858
+ "kind": "Reference",
2859
+ "text": "GlobalEventHandlers",
2860
+ "canonicalReference": "!GlobalEventHandlers:interface"
2861
+ },
2862
+ {
2863
+ "kind": "Content",
2864
+ "text": ", ev: "
2865
+ },
2866
+ {
2867
+ "kind": "Reference",
2868
+ "text": "MouseEvent",
2869
+ "canonicalReference": "!MouseEvent:interface"
2870
+ },
2871
+ {
2872
+ "kind": "Content",
2873
+ "text": ") => any;\n onpause: (this: "
2874
+ },
2875
+ {
2876
+ "kind": "Reference",
2877
+ "text": "GlobalEventHandlers",
2878
+ "canonicalReference": "!GlobalEventHandlers:interface"
2879
+ },
2880
+ {
2881
+ "kind": "Content",
2882
+ "text": ", ev: "
2883
+ },
2884
+ {
2885
+ "kind": "Reference",
2886
+ "text": "Event",
2887
+ "canonicalReference": "!Event:interface"
2888
+ },
2889
+ {
2890
+ "kind": "Content",
2891
+ "text": ") => any;\n onplay: (this: "
2892
+ },
2893
+ {
2894
+ "kind": "Reference",
2895
+ "text": "GlobalEventHandlers",
2896
+ "canonicalReference": "!GlobalEventHandlers:interface"
2897
+ },
2898
+ {
2899
+ "kind": "Content",
2900
+ "text": ", ev: "
2901
+ },
2902
+ {
2903
+ "kind": "Reference",
2904
+ "text": "Event",
2905
+ "canonicalReference": "!Event:interface"
2906
+ },
2907
+ {
2908
+ "kind": "Content",
2909
+ "text": ") => any;\n onplaying: (this: "
2910
+ },
2911
+ {
2912
+ "kind": "Reference",
2913
+ "text": "GlobalEventHandlers",
2914
+ "canonicalReference": "!GlobalEventHandlers:interface"
2915
+ },
2916
+ {
2917
+ "kind": "Content",
2918
+ "text": ", ev: "
2919
+ },
2920
+ {
2921
+ "kind": "Reference",
2922
+ "text": "Event",
2923
+ "canonicalReference": "!Event:interface"
2924
+ },
2925
+ {
2926
+ "kind": "Content",
2927
+ "text": ") => any;\n onpointercancel: (this: "
2928
+ },
2929
+ {
2930
+ "kind": "Reference",
2931
+ "text": "GlobalEventHandlers",
2932
+ "canonicalReference": "!GlobalEventHandlers:interface"
2933
+ },
2934
+ {
2935
+ "kind": "Content",
2936
+ "text": ", ev: "
2937
+ },
2938
+ {
2939
+ "kind": "Reference",
2940
+ "text": "PointerEvent",
2941
+ "canonicalReference": "!PointerEvent:interface"
2942
+ },
2943
+ {
2944
+ "kind": "Content",
2945
+ "text": ") => any;\n onpointerdown: (this: "
2946
+ },
2947
+ {
2948
+ "kind": "Reference",
2949
+ "text": "GlobalEventHandlers",
2950
+ "canonicalReference": "!GlobalEventHandlers:interface"
2951
+ },
2952
+ {
2953
+ "kind": "Content",
2954
+ "text": ", ev: "
2955
+ },
2956
+ {
2957
+ "kind": "Reference",
2958
+ "text": "PointerEvent",
2959
+ "canonicalReference": "!PointerEvent:interface"
2960
+ },
2961
+ {
2962
+ "kind": "Content",
2963
+ "text": ") => any;\n onpointerenter: (this: "
2964
+ },
2965
+ {
2966
+ "kind": "Reference",
2967
+ "text": "GlobalEventHandlers",
2968
+ "canonicalReference": "!GlobalEventHandlers:interface"
2969
+ },
2970
+ {
2971
+ "kind": "Content",
2972
+ "text": ", ev: "
2973
+ },
2974
+ {
2975
+ "kind": "Reference",
2976
+ "text": "PointerEvent",
2977
+ "canonicalReference": "!PointerEvent:interface"
2978
+ },
2979
+ {
2980
+ "kind": "Content",
2981
+ "text": ") => any;\n onpointerleave: (this: "
2982
+ },
2983
+ {
2984
+ "kind": "Reference",
2985
+ "text": "GlobalEventHandlers",
2986
+ "canonicalReference": "!GlobalEventHandlers:interface"
2987
+ },
2988
+ {
2989
+ "kind": "Content",
2990
+ "text": ", ev: "
2991
+ },
2992
+ {
2993
+ "kind": "Reference",
2994
+ "text": "PointerEvent",
2995
+ "canonicalReference": "!PointerEvent:interface"
2996
+ },
2997
+ {
2998
+ "kind": "Content",
2999
+ "text": ") => any;\n onpointermove: (this: "
3000
+ },
3001
+ {
3002
+ "kind": "Reference",
3003
+ "text": "GlobalEventHandlers",
3004
+ "canonicalReference": "!GlobalEventHandlers:interface"
3005
+ },
3006
+ {
3007
+ "kind": "Content",
3008
+ "text": ", ev: "
3009
+ },
3010
+ {
3011
+ "kind": "Reference",
3012
+ "text": "PointerEvent",
3013
+ "canonicalReference": "!PointerEvent:interface"
3014
+ },
3015
+ {
3016
+ "kind": "Content",
3017
+ "text": ") => any;\n onpointerout: (this: "
3018
+ },
3019
+ {
3020
+ "kind": "Reference",
3021
+ "text": "GlobalEventHandlers",
3022
+ "canonicalReference": "!GlobalEventHandlers:interface"
3023
+ },
3024
+ {
3025
+ "kind": "Content",
3026
+ "text": ", ev: "
3027
+ },
3028
+ {
3029
+ "kind": "Reference",
3030
+ "text": "PointerEvent",
3031
+ "canonicalReference": "!PointerEvent:interface"
3032
+ },
3033
+ {
3034
+ "kind": "Content",
3035
+ "text": ") => any;\n onpointerover: (this: "
3036
+ },
3037
+ {
3038
+ "kind": "Reference",
3039
+ "text": "GlobalEventHandlers",
3040
+ "canonicalReference": "!GlobalEventHandlers:interface"
3041
+ },
3042
+ {
3043
+ "kind": "Content",
3044
+ "text": ", ev: "
3045
+ },
3046
+ {
3047
+ "kind": "Reference",
3048
+ "text": "PointerEvent",
3049
+ "canonicalReference": "!PointerEvent:interface"
3050
+ },
3051
+ {
3052
+ "kind": "Content",
3053
+ "text": ") => any;\n onpointerup: (this: "
3054
+ },
3055
+ {
3056
+ "kind": "Reference",
3057
+ "text": "GlobalEventHandlers",
3058
+ "canonicalReference": "!GlobalEventHandlers:interface"
3059
+ },
3060
+ {
3061
+ "kind": "Content",
3062
+ "text": ", ev: "
3063
+ },
3064
+ {
3065
+ "kind": "Reference",
3066
+ "text": "PointerEvent",
3067
+ "canonicalReference": "!PointerEvent:interface"
3068
+ },
3069
+ {
3070
+ "kind": "Content",
3071
+ "text": ") => any;\n onprogress: (this: "
3072
+ },
3073
+ {
3074
+ "kind": "Reference",
3075
+ "text": "GlobalEventHandlers",
3076
+ "canonicalReference": "!GlobalEventHandlers:interface"
3077
+ },
3078
+ {
3079
+ "kind": "Content",
3080
+ "text": ", ev: "
3081
+ },
3082
+ {
3083
+ "kind": "Reference",
3084
+ "text": "ProgressEvent",
3085
+ "canonicalReference": "!ProgressEvent:interface"
3086
+ },
3087
+ {
3088
+ "kind": "Content",
3089
+ "text": "<"
3090
+ },
3091
+ {
3092
+ "kind": "Reference",
3093
+ "text": "EventTarget",
3094
+ "canonicalReference": "!EventTarget:interface"
3095
+ },
3096
+ {
3097
+ "kind": "Content",
3098
+ "text": ">) => any;\n onratechange: (this: "
3099
+ },
3100
+ {
3101
+ "kind": "Reference",
3102
+ "text": "GlobalEventHandlers",
3103
+ "canonicalReference": "!GlobalEventHandlers:interface"
3104
+ },
3105
+ {
3106
+ "kind": "Content",
3107
+ "text": ", ev: "
3108
+ },
3109
+ {
3110
+ "kind": "Reference",
3111
+ "text": "Event",
3112
+ "canonicalReference": "!Event:interface"
3113
+ },
3114
+ {
3115
+ "kind": "Content",
3116
+ "text": ") => any;\n onreset: (this: "
3117
+ },
3118
+ {
3119
+ "kind": "Reference",
3120
+ "text": "GlobalEventHandlers",
3121
+ "canonicalReference": "!GlobalEventHandlers:interface"
3122
+ },
3123
+ {
3124
+ "kind": "Content",
3125
+ "text": ", ev: "
3126
+ },
3127
+ {
3128
+ "kind": "Reference",
3129
+ "text": "Event",
3130
+ "canonicalReference": "!Event:interface"
3131
+ },
3132
+ {
3133
+ "kind": "Content",
3134
+ "text": ") => any;\n onresize: (this: "
3135
+ },
3136
+ {
3137
+ "kind": "Reference",
3138
+ "text": "GlobalEventHandlers",
3139
+ "canonicalReference": "!GlobalEventHandlers:interface"
3140
+ },
3141
+ {
3142
+ "kind": "Content",
3143
+ "text": ", ev: "
3144
+ },
3145
+ {
3146
+ "kind": "Reference",
3147
+ "text": "UIEvent",
3148
+ "canonicalReference": "!UIEvent:interface"
3149
+ },
3150
+ {
3151
+ "kind": "Content",
3152
+ "text": ") => any;\n onscroll: (this: "
3153
+ },
3154
+ {
3155
+ "kind": "Reference",
3156
+ "text": "GlobalEventHandlers",
3157
+ "canonicalReference": "!GlobalEventHandlers:interface"
3158
+ },
3159
+ {
3160
+ "kind": "Content",
3161
+ "text": ", ev: "
3162
+ },
3163
+ {
3164
+ "kind": "Reference",
3165
+ "text": "Event",
3166
+ "canonicalReference": "!Event:interface"
3167
+ },
3168
+ {
3169
+ "kind": "Content",
3170
+ "text": ") => any;\n onsecuritypolicyviolation: (this: "
3171
+ },
3172
+ {
3173
+ "kind": "Reference",
3174
+ "text": "GlobalEventHandlers",
3175
+ "canonicalReference": "!GlobalEventHandlers:interface"
3176
+ },
3177
+ {
3178
+ "kind": "Content",
3179
+ "text": ", ev: "
3180
+ },
3181
+ {
3182
+ "kind": "Reference",
3183
+ "text": "SecurityPolicyViolationEvent",
3184
+ "canonicalReference": "!SecurityPolicyViolationEvent:interface"
3185
+ },
3186
+ {
3187
+ "kind": "Content",
3188
+ "text": ") => any;\n onseeked: (this: "
3189
+ },
3190
+ {
3191
+ "kind": "Reference",
3192
+ "text": "GlobalEventHandlers",
3193
+ "canonicalReference": "!GlobalEventHandlers:interface"
3194
+ },
3195
+ {
3196
+ "kind": "Content",
3197
+ "text": ", ev: "
3198
+ },
3199
+ {
3200
+ "kind": "Reference",
3201
+ "text": "Event",
3202
+ "canonicalReference": "!Event:interface"
3203
+ },
3204
+ {
3205
+ "kind": "Content",
3206
+ "text": ") => any;\n onseeking: (this: "
3207
+ },
3208
+ {
3209
+ "kind": "Reference",
3210
+ "text": "GlobalEventHandlers",
3211
+ "canonicalReference": "!GlobalEventHandlers:interface"
3212
+ },
3213
+ {
3214
+ "kind": "Content",
3215
+ "text": ", ev: "
3216
+ },
3217
+ {
3218
+ "kind": "Reference",
3219
+ "text": "Event",
3220
+ "canonicalReference": "!Event:interface"
3221
+ },
3222
+ {
3223
+ "kind": "Content",
3224
+ "text": ") => any;\n onselect: (this: "
3225
+ },
3226
+ {
3227
+ "kind": "Reference",
3228
+ "text": "GlobalEventHandlers",
3229
+ "canonicalReference": "!GlobalEventHandlers:interface"
3230
+ },
3231
+ {
3232
+ "kind": "Content",
3233
+ "text": ", ev: "
3234
+ },
3235
+ {
3236
+ "kind": "Reference",
3237
+ "text": "Event",
3238
+ "canonicalReference": "!Event:interface"
3239
+ },
3240
+ {
3241
+ "kind": "Content",
3242
+ "text": ") => any;\n onselectionchange: (this: "
3243
+ },
3244
+ {
3245
+ "kind": "Reference",
3246
+ "text": "GlobalEventHandlers",
3247
+ "canonicalReference": "!GlobalEventHandlers:interface"
3248
+ },
3249
+ {
3250
+ "kind": "Content",
3251
+ "text": ", ev: "
3252
+ },
3253
+ {
3254
+ "kind": "Reference",
3255
+ "text": "Event",
3256
+ "canonicalReference": "!Event:interface"
3257
+ },
3258
+ {
3259
+ "kind": "Content",
3260
+ "text": ") => any;\n onselectstart: (this: "
3261
+ },
3262
+ {
3263
+ "kind": "Reference",
3264
+ "text": "GlobalEventHandlers",
3265
+ "canonicalReference": "!GlobalEventHandlers:interface"
3266
+ },
3267
+ {
3268
+ "kind": "Content",
3269
+ "text": ", ev: "
3270
+ },
3271
+ {
3272
+ "kind": "Reference",
3273
+ "text": "Event",
3274
+ "canonicalReference": "!Event:interface"
3275
+ },
3276
+ {
3277
+ "kind": "Content",
3278
+ "text": ") => any;\n onslotchange: (this: "
3279
+ },
3280
+ {
3281
+ "kind": "Reference",
3282
+ "text": "GlobalEventHandlers",
3283
+ "canonicalReference": "!GlobalEventHandlers:interface"
3284
+ },
3285
+ {
3286
+ "kind": "Content",
3287
+ "text": ", ev: "
3288
+ },
3289
+ {
3290
+ "kind": "Reference",
3291
+ "text": "Event",
3292
+ "canonicalReference": "!Event:interface"
3293
+ },
3294
+ {
3295
+ "kind": "Content",
3296
+ "text": ") => any;\n onstalled: (this: "
3297
+ },
3298
+ {
3299
+ "kind": "Reference",
3300
+ "text": "GlobalEventHandlers",
3301
+ "canonicalReference": "!GlobalEventHandlers:interface"
3302
+ },
3303
+ {
3304
+ "kind": "Content",
3305
+ "text": ", ev: "
3306
+ },
3307
+ {
3308
+ "kind": "Reference",
3309
+ "text": "Event",
3310
+ "canonicalReference": "!Event:interface"
3311
+ },
3312
+ {
3313
+ "kind": "Content",
3314
+ "text": ") => any;\n onsubmit: (this: "
3315
+ },
3316
+ {
3317
+ "kind": "Reference",
3318
+ "text": "GlobalEventHandlers",
3319
+ "canonicalReference": "!GlobalEventHandlers:interface"
3320
+ },
3321
+ {
3322
+ "kind": "Content",
3323
+ "text": ", ev: "
3324
+ },
3325
+ {
3326
+ "kind": "Reference",
3327
+ "text": "SubmitEvent",
3328
+ "canonicalReference": "!SubmitEvent:interface"
3329
+ },
3330
+ {
3331
+ "kind": "Content",
3332
+ "text": ") => any;\n onsuspend: (this: "
3333
+ },
3334
+ {
3335
+ "kind": "Reference",
3336
+ "text": "GlobalEventHandlers",
3337
+ "canonicalReference": "!GlobalEventHandlers:interface"
3338
+ },
3339
+ {
3340
+ "kind": "Content",
3341
+ "text": ", ev: "
3342
+ },
3343
+ {
3344
+ "kind": "Reference",
3345
+ "text": "Event",
3346
+ "canonicalReference": "!Event:interface"
3347
+ },
3348
+ {
3349
+ "kind": "Content",
3350
+ "text": ") => any;\n ontimeupdate: (this: "
3351
+ },
3352
+ {
3353
+ "kind": "Reference",
3354
+ "text": "GlobalEventHandlers",
3355
+ "canonicalReference": "!GlobalEventHandlers:interface"
3356
+ },
3357
+ {
3358
+ "kind": "Content",
3359
+ "text": ", ev: "
3360
+ },
3361
+ {
3362
+ "kind": "Reference",
3363
+ "text": "Event",
3364
+ "canonicalReference": "!Event:interface"
3365
+ },
3366
+ {
3367
+ "kind": "Content",
3368
+ "text": ") => any;\n ontoggle: (this: "
3369
+ },
3370
+ {
3371
+ "kind": "Reference",
3372
+ "text": "GlobalEventHandlers",
3373
+ "canonicalReference": "!GlobalEventHandlers:interface"
3374
+ },
3375
+ {
3376
+ "kind": "Content",
3377
+ "text": ", ev: "
3378
+ },
3379
+ {
3380
+ "kind": "Reference",
3381
+ "text": "Event",
3382
+ "canonicalReference": "!Event:interface"
3383
+ },
3384
+ {
3385
+ "kind": "Content",
3386
+ "text": ") => any;\n ontouchcancel?: (this: "
3387
+ },
3388
+ {
3389
+ "kind": "Reference",
3390
+ "text": "GlobalEventHandlers",
3391
+ "canonicalReference": "!GlobalEventHandlers:interface"
3392
+ },
3393
+ {
3394
+ "kind": "Content",
3395
+ "text": ", ev: "
3396
+ },
3397
+ {
3398
+ "kind": "Reference",
3399
+ "text": "TouchEvent",
3400
+ "canonicalReference": "!TouchEvent:interface"
3401
+ },
3402
+ {
3403
+ "kind": "Content",
3404
+ "text": ") => any;\n ontouchend?: (this: "
3405
+ },
3406
+ {
3407
+ "kind": "Reference",
3408
+ "text": "GlobalEventHandlers",
3409
+ "canonicalReference": "!GlobalEventHandlers:interface"
3410
+ },
3411
+ {
3412
+ "kind": "Content",
3413
+ "text": ", ev: "
3414
+ },
3415
+ {
3416
+ "kind": "Reference",
3417
+ "text": "TouchEvent",
3418
+ "canonicalReference": "!TouchEvent:interface"
3419
+ },
3420
+ {
3421
+ "kind": "Content",
3422
+ "text": ") => any;\n ontouchmove?: (this: "
3423
+ },
3424
+ {
3425
+ "kind": "Reference",
3426
+ "text": "GlobalEventHandlers",
3427
+ "canonicalReference": "!GlobalEventHandlers:interface"
3428
+ },
3429
+ {
3430
+ "kind": "Content",
3431
+ "text": ", ev: "
3432
+ },
3433
+ {
3434
+ "kind": "Reference",
3435
+ "text": "TouchEvent",
3436
+ "canonicalReference": "!TouchEvent:interface"
3437
+ },
3438
+ {
3439
+ "kind": "Content",
3440
+ "text": ") => any;\n ontouchstart?: (this: "
3441
+ },
3442
+ {
3443
+ "kind": "Reference",
3444
+ "text": "GlobalEventHandlers",
3445
+ "canonicalReference": "!GlobalEventHandlers:interface"
3446
+ },
3447
+ {
3448
+ "kind": "Content",
3449
+ "text": ", ev: "
3450
+ },
3451
+ {
3452
+ "kind": "Reference",
3453
+ "text": "TouchEvent",
3454
+ "canonicalReference": "!TouchEvent:interface"
3455
+ },
3456
+ {
3457
+ "kind": "Content",
3458
+ "text": ") => any;\n ontransitioncancel: (this: "
3459
+ },
3460
+ {
3461
+ "kind": "Reference",
3462
+ "text": "GlobalEventHandlers",
3463
+ "canonicalReference": "!GlobalEventHandlers:interface"
3464
+ },
3465
+ {
3466
+ "kind": "Content",
3467
+ "text": ", ev: "
3468
+ },
3469
+ {
3470
+ "kind": "Reference",
3471
+ "text": "TransitionEvent",
3472
+ "canonicalReference": "!TransitionEvent:interface"
3473
+ },
3474
+ {
3475
+ "kind": "Content",
3476
+ "text": ") => any;\n ontransitionend: (this: "
3477
+ },
3478
+ {
3479
+ "kind": "Reference",
3480
+ "text": "GlobalEventHandlers",
3481
+ "canonicalReference": "!GlobalEventHandlers:interface"
3482
+ },
3483
+ {
3484
+ "kind": "Content",
3485
+ "text": ", ev: "
3486
+ },
3487
+ {
3488
+ "kind": "Reference",
3489
+ "text": "TransitionEvent",
3490
+ "canonicalReference": "!TransitionEvent:interface"
3491
+ },
3492
+ {
3493
+ "kind": "Content",
3494
+ "text": ") => any;\n ontransitionrun: (this: "
3495
+ },
3496
+ {
3497
+ "kind": "Reference",
3498
+ "text": "GlobalEventHandlers",
3499
+ "canonicalReference": "!GlobalEventHandlers:interface"
3500
+ },
3501
+ {
3502
+ "kind": "Content",
3503
+ "text": ", ev: "
3504
+ },
3505
+ {
3506
+ "kind": "Reference",
3507
+ "text": "TransitionEvent",
3508
+ "canonicalReference": "!TransitionEvent:interface"
3509
+ },
3510
+ {
3511
+ "kind": "Content",
3512
+ "text": ") => any;\n ontransitionstart: (this: "
3513
+ },
3514
+ {
3515
+ "kind": "Reference",
3516
+ "text": "GlobalEventHandlers",
3517
+ "canonicalReference": "!GlobalEventHandlers:interface"
3518
+ },
3519
+ {
3520
+ "kind": "Content",
3521
+ "text": ", ev: "
3522
+ },
3523
+ {
3524
+ "kind": "Reference",
3525
+ "text": "TransitionEvent",
3526
+ "canonicalReference": "!TransitionEvent:interface"
3527
+ },
3528
+ {
3529
+ "kind": "Content",
3530
+ "text": ") => any;\n onvolumechange: (this: "
3531
+ },
3532
+ {
3533
+ "kind": "Reference",
3534
+ "text": "GlobalEventHandlers",
3535
+ "canonicalReference": "!GlobalEventHandlers:interface"
3536
+ },
3537
+ {
3538
+ "kind": "Content",
3539
+ "text": ", ev: "
3540
+ },
3541
+ {
3542
+ "kind": "Reference",
3543
+ "text": "Event",
3544
+ "canonicalReference": "!Event:interface"
3545
+ },
3546
+ {
3547
+ "kind": "Content",
3548
+ "text": ") => any;\n onwaiting: (this: "
3549
+ },
3550
+ {
3551
+ "kind": "Reference",
3552
+ "text": "GlobalEventHandlers",
3553
+ "canonicalReference": "!GlobalEventHandlers:interface"
3554
+ },
3555
+ {
3556
+ "kind": "Content",
3557
+ "text": ", ev: "
3558
+ },
3559
+ {
3560
+ "kind": "Reference",
3561
+ "text": "Event",
3562
+ "canonicalReference": "!Event:interface"
3563
+ },
3564
+ {
3565
+ "kind": "Content",
3566
+ "text": ") => any;\n onwebkitanimationend: (this: "
3567
+ },
3568
+ {
3569
+ "kind": "Reference",
3570
+ "text": "GlobalEventHandlers",
3571
+ "canonicalReference": "!GlobalEventHandlers:interface"
3572
+ },
3573
+ {
3574
+ "kind": "Content",
3575
+ "text": ", ev: "
3576
+ },
3577
+ {
3578
+ "kind": "Reference",
3579
+ "text": "Event",
3580
+ "canonicalReference": "!Event:interface"
3581
+ },
3582
+ {
3583
+ "kind": "Content",
3584
+ "text": ") => any;\n onwebkitanimationiteration: (this: "
3585
+ },
3586
+ {
3587
+ "kind": "Reference",
3588
+ "text": "GlobalEventHandlers",
3589
+ "canonicalReference": "!GlobalEventHandlers:interface"
3590
+ },
3591
+ {
3592
+ "kind": "Content",
3593
+ "text": ", ev: "
3594
+ },
3595
+ {
3596
+ "kind": "Reference",
3597
+ "text": "Event",
3598
+ "canonicalReference": "!Event:interface"
3599
+ },
3600
+ {
3601
+ "kind": "Content",
3602
+ "text": ") => any;\n onwebkitanimationstart: (this: "
3603
+ },
3604
+ {
3605
+ "kind": "Reference",
3606
+ "text": "GlobalEventHandlers",
3607
+ "canonicalReference": "!GlobalEventHandlers:interface"
3608
+ },
3609
+ {
3610
+ "kind": "Content",
3611
+ "text": ", ev: "
3612
+ },
3613
+ {
3614
+ "kind": "Reference",
3615
+ "text": "Event",
3616
+ "canonicalReference": "!Event:interface"
3617
+ },
3618
+ {
3619
+ "kind": "Content",
3620
+ "text": ") => any;\n onwebkittransitionend: (this: "
3621
+ },
3622
+ {
3623
+ "kind": "Reference",
3624
+ "text": "GlobalEventHandlers",
3625
+ "canonicalReference": "!GlobalEventHandlers:interface"
3626
+ },
3627
+ {
3628
+ "kind": "Content",
3629
+ "text": ", ev: "
3630
+ },
3631
+ {
3632
+ "kind": "Reference",
3633
+ "text": "Event",
3634
+ "canonicalReference": "!Event:interface"
3635
+ },
3636
+ {
3637
+ "kind": "Content",
3638
+ "text": ") => any;\n onwheel: (this: "
3639
+ },
3640
+ {
3641
+ "kind": "Reference",
3642
+ "text": "GlobalEventHandlers",
3643
+ "canonicalReference": "!GlobalEventHandlers:interface"
3644
+ },
3645
+ {
3646
+ "kind": "Content",
3647
+ "text": ", ev: "
3648
+ },
3649
+ {
3650
+ "kind": "Reference",
3651
+ "text": "WheelEvent",
3652
+ "canonicalReference": "!WheelEvent:interface"
3653
+ },
3654
+ {
3655
+ "kind": "Content",
3656
+ "text": ") => any;\n autofocus: boolean;\n readonly dataset: "
3657
+ },
3658
+ {
3659
+ "kind": "Reference",
3660
+ "text": "DOMStringMap",
3661
+ "canonicalReference": "!DOMStringMap:interface"
3662
+ },
3663
+ {
3664
+ "kind": "Content",
3665
+ "text": ";\n nonce?: string;\n tabIndex: number;\n blur(): void;\n focus(options?: "
3666
+ },
3667
+ {
3668
+ "kind": "Reference",
3669
+ "text": "FocusOptions",
3670
+ "canonicalReference": "!FocusOptions:interface"
3671
+ },
3672
+ {
3673
+ "kind": "Content",
3674
+ "text": "): void;\n readonly $fastController: import(\"@microsoft/fast-element\")."
831
3675
  },
832
3676
  {
833
3677
  "kind": "Reference",
@@ -845,7 +3689,7 @@
845
3689
  "name": "EventEmitter",
846
3690
  "variableTypeTokenRange": {
847
3691
  "startIndex": 1,
848
- "endIndex": 18
3692
+ "endIndex": 650
849
3693
  }
850
3694
  },
851
3695
  {