@genesislcap/foundation-events 14.301.0 → 14.302.1-alpha-d11831b.0
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/dts/eventEmitter/emitterFunction.d.ts.map +1 -1
- package/dist/dts/eventEmitter/eventEmitterDI.d.ts.map +1 -1
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts +256 -215
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/dts/types.d.ts.map +1 -1
- package/dist/foundation-events.api.json +945 -328
- package/dist/foundation-events.d.ts +256 -215
- package/docs/api/foundation-events.createinputemitter.md +4 -1
- package/docs/api/foundation-events.createselectemitter.md +4 -1
- package/docs/api/foundation-events.customevent.md +40 -1
- package/docs/api/foundation-events.defaulteventemitterdi.emit.md +31 -3
- package/docs/api/foundation-events.defaulteventemitterdi.md +29 -3
- package/docs/api/foundation-events.emitter.md +6 -3
- package/docs/api/foundation-events.eventemitter.md +297 -216
- package/docs/api/foundation-events.eventemitterdi.emit.md +31 -3
- package/docs/api/foundation-events.eventemitterdi.md +22 -4
- package/docs/api/foundation-events.getbaseemitargs.md +40 -1
- package/docs/api/foundation-events.isemitoptions.md +40 -1
- package/docs/api/foundation-events.md +309 -32
- package/docs/api/foundation-events.registeremitter.md +5 -1
- package/docs/api/foundation-events.typedemitter._emit.md +31 -3
- package/docs/api/foundation-events.typedemitter.md +21 -3
- package/docs/api/index.md +21 -3
- package/docs/api-report.md.api.md +466 -0
- package/package.json +11 -11
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"metadata": {
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
4
|
-
"toolVersion": "7.
|
4
|
+
"toolVersion": "7.52.10",
|
5
5
|
"schemaVersion": 1011,
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
7
7
|
"tsdocConfig": {
|
@@ -222,17 +222,13 @@
|
|
222
222
|
}
|
223
223
|
},
|
224
224
|
{
|
225
|
-
"kind": "
|
226
|
-
"canonicalReference": "@genesislcap/foundation-events!createInputEmitter:
|
225
|
+
"kind": "Function",
|
226
|
+
"canonicalReference": "@genesislcap/foundation-events!createInputEmitter:function(1)",
|
227
227
|
"docComment": "/**\n * `<input>` template emit helper.\n *\n * @remarks\n *\n * In some.template.ts file you create the helper upfront by passing in the full event map.\n *\n * @example\n * ```ts\n * const inputEmit = createInputEmitter<EventMap>();\n * ...\n * <zero-text-field @change=\"${inputEmit('some-input-changed')}\">\n * ```\n *\n * @public\n */\n",
|
228
228
|
"excerptTokens": [
|
229
229
|
{
|
230
230
|
"kind": "Content",
|
231
|
-
"text": "createInputEmitter: "
|
232
|
-
},
|
233
|
-
{
|
234
|
-
"kind": "Content",
|
235
|
-
"text": "<TEventDetailMap extends "
|
231
|
+
"text": "createInputEmitter: <TEventDetailMap extends "
|
236
232
|
},
|
237
233
|
{
|
238
234
|
"kind": "Reference",
|
@@ -241,7 +237,11 @@
|
|
241
237
|
},
|
242
238
|
{
|
243
239
|
"kind": "Content",
|
244
|
-
"text": ">() =>
|
240
|
+
"text": ">() => "
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"kind": "Content",
|
244
|
+
"text": "<K extends "
|
245
245
|
},
|
246
246
|
{
|
247
247
|
"kind": "Reference",
|
@@ -268,26 +268,36 @@
|
|
268
268
|
}
|
269
269
|
],
|
270
270
|
"fileUrlPath": "src/types.ts",
|
271
|
-
"
|
272
|
-
|
273
|
-
"name": "createInputEmitter",
|
274
|
-
"variableTypeTokenRange": {
|
275
|
-
"startIndex": 1,
|
271
|
+
"returnTypeTokenRange": {
|
272
|
+
"startIndex": 3,
|
276
273
|
"endIndex": 9
|
277
|
-
}
|
274
|
+
},
|
275
|
+
"releaseTag": "Public",
|
276
|
+
"overloadIndex": 1,
|
277
|
+
"parameters": [],
|
278
|
+
"typeParameters": [
|
279
|
+
{
|
280
|
+
"typeParameterName": "TEventDetailMap",
|
281
|
+
"constraintTokenRange": {
|
282
|
+
"startIndex": 1,
|
283
|
+
"endIndex": 2
|
284
|
+
},
|
285
|
+
"defaultTypeTokenRange": {
|
286
|
+
"startIndex": 0,
|
287
|
+
"endIndex": 0
|
288
|
+
}
|
289
|
+
}
|
290
|
+
],
|
291
|
+
"name": "createInputEmitter"
|
278
292
|
},
|
279
293
|
{
|
280
|
-
"kind": "
|
281
|
-
"canonicalReference": "@genesislcap/foundation-events!createSelectEmitter:
|
294
|
+
"kind": "Function",
|
295
|
+
"canonicalReference": "@genesislcap/foundation-events!createSelectEmitter:function(1)",
|
282
296
|
"docComment": "/**\n * `<select>` template emit helper.\n *\n * @remarks\n *\n * In some.template.ts file you create the helper upfront by passing in the full event map.\n *\n * @example\n * ```ts\n * const selectEmit = createSelectEmitter<EventMap>();\n * ...\n * <zero-select @change=\"${selectEmit('some-select-changed')}\">\n * ```\n *\n * @public\n */\n",
|
283
297
|
"excerptTokens": [
|
284
298
|
{
|
285
299
|
"kind": "Content",
|
286
|
-
"text": "createSelectEmitter: "
|
287
|
-
},
|
288
|
-
{
|
289
|
-
"kind": "Content",
|
290
|
-
"text": "<TEventDetailMap extends "
|
300
|
+
"text": "createSelectEmitter: <TEventDetailMap extends "
|
291
301
|
},
|
292
302
|
{
|
293
303
|
"kind": "Reference",
|
@@ -296,7 +306,11 @@
|
|
296
306
|
},
|
297
307
|
{
|
298
308
|
"kind": "Content",
|
299
|
-
"text": ">() =>
|
309
|
+
"text": ">() => "
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"kind": "Content",
|
313
|
+
"text": "<K extends "
|
300
314
|
},
|
301
315
|
{
|
302
316
|
"kind": "Reference",
|
@@ -323,26 +337,44 @@
|
|
323
337
|
}
|
324
338
|
],
|
325
339
|
"fileUrlPath": "src/types.ts",
|
326
|
-
"
|
327
|
-
|
328
|
-
"name": "createSelectEmitter",
|
329
|
-
"variableTypeTokenRange": {
|
330
|
-
"startIndex": 1,
|
340
|
+
"returnTypeTokenRange": {
|
341
|
+
"startIndex": 3,
|
331
342
|
"endIndex": 9
|
332
|
-
}
|
343
|
+
},
|
344
|
+
"releaseTag": "Public",
|
345
|
+
"overloadIndex": 1,
|
346
|
+
"parameters": [],
|
347
|
+
"typeParameters": [
|
348
|
+
{
|
349
|
+
"typeParameterName": "TEventDetailMap",
|
350
|
+
"constraintTokenRange": {
|
351
|
+
"startIndex": 1,
|
352
|
+
"endIndex": 2
|
353
|
+
},
|
354
|
+
"defaultTypeTokenRange": {
|
355
|
+
"startIndex": 0,
|
356
|
+
"endIndex": 0
|
357
|
+
}
|
358
|
+
}
|
359
|
+
],
|
360
|
+
"name": "createSelectEmitter"
|
333
361
|
},
|
334
362
|
{
|
335
|
-
"kind": "
|
336
|
-
"canonicalReference": "@genesislcap/foundation-events!customEvent:
|
363
|
+
"kind": "Function",
|
364
|
+
"canonicalReference": "@genesislcap/foundation-events!customEvent:function(1)",
|
337
365
|
"docComment": "/**\n * @public\n */\n",
|
338
366
|
"excerptTokens": [
|
339
367
|
{
|
340
368
|
"kind": "Content",
|
341
|
-
"text": "customEvent: "
|
369
|
+
"text": "customEvent: <TEventDetail = "
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"kind": "Content",
|
373
|
+
"text": "void"
|
342
374
|
},
|
343
375
|
{
|
344
376
|
"kind": "Content",
|
345
|
-
"text": "
|
377
|
+
"text": ">(ctx: "
|
346
378
|
},
|
347
379
|
{
|
348
380
|
"kind": "Reference",
|
@@ -364,13 +396,36 @@
|
|
364
396
|
}
|
365
397
|
],
|
366
398
|
"fileUrlPath": "src/types.ts",
|
367
|
-
"
|
399
|
+
"returnTypeTokenRange": {
|
400
|
+
"startIndex": 5,
|
401
|
+
"endIndex": 7
|
402
|
+
},
|
368
403
|
"releaseTag": "Public",
|
369
|
-
"
|
370
|
-
"
|
371
|
-
|
372
|
-
|
373
|
-
|
404
|
+
"overloadIndex": 1,
|
405
|
+
"parameters": [
|
406
|
+
{
|
407
|
+
"parameterName": "ctx",
|
408
|
+
"parameterTypeTokenRange": {
|
409
|
+
"startIndex": 3,
|
410
|
+
"endIndex": 4
|
411
|
+
},
|
412
|
+
"isOptional": false
|
413
|
+
}
|
414
|
+
],
|
415
|
+
"typeParameters": [
|
416
|
+
{
|
417
|
+
"typeParameterName": "TEventDetail",
|
418
|
+
"constraintTokenRange": {
|
419
|
+
"startIndex": 0,
|
420
|
+
"endIndex": 0
|
421
|
+
},
|
422
|
+
"defaultTypeTokenRange": {
|
423
|
+
"startIndex": 1,
|
424
|
+
"endIndex": 2
|
425
|
+
}
|
426
|
+
}
|
427
|
+
],
|
428
|
+
"name": "customEvent"
|
374
429
|
},
|
375
430
|
{
|
376
431
|
"kind": "TypeAlias",
|
@@ -723,17 +778,13 @@
|
|
723
778
|
}
|
724
779
|
},
|
725
780
|
{
|
726
|
-
"kind": "
|
727
|
-
"canonicalReference": "@genesislcap/foundation-events!emitter:
|
781
|
+
"kind": "Function",
|
782
|
+
"canonicalReference": "@genesislcap/foundation-events!emitter:function(1)",
|
728
783
|
"docComment": "/**\n * emitter function.\n *\n * This is the functional equivalent of the strongly typed `.emit` function created with the {@link EventEmitter} mixin.\n *\n * @remarks\n *\n * This is useful if you need to emit an event from an arbitrary location. For example, if you want to emit an event from a button on a custom grid cell renderer you can use this to get strong typing rather than having to dependency inject a reference to the class which uses the {@link EventEmitter} mixin multiple levels into the renderer.\n *\n * @param orign - the `HTMLElement` to dispatch the event from. Ensure this correctly relates to the component you've attatched the corresponding event listener to.\n *\n * @param type - the key in `TEventDetailMap` which is the event name from the detail map\n *\n * @param detail - *optional* param `TEventDetailMap[K]` which is the payload corresponding to the event `type`\n *\n * @param options - *optional* param {@link EmitOptions} to set event options. Default `{ composed: true, bubbles: true, cancelable: true, }`\n *\n * @typeParam TEventDetailMap - The {@link EventDetailMap}.\n *\n * @example\n *\n * Apply mixin to the base {@link @microsoft/fast-element#FASTElement | FASTElement}\n *\n * # Import\n * ```ts\n * import { emitter, 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 * # Use the functional emitter. For example in a custom button action on a grid cell\n * ```ts\n * const customAction = {\n * name: `<rapid-button name=\"download\" size=\"lg\"></rapid-button>`\n * callback: (button: HTMLElement, data: RowData) =>\n * emitter<EventMap>().emit(\n * button,\n * 'some-allowed-event',\n * { foo: 'expected data structure' },\n * ),\n * }\n * ```\n *\n * @public\n */\n",
|
729
784
|
"excerptTokens": [
|
730
785
|
{
|
731
786
|
"kind": "Content",
|
732
|
-
"text": "emitter: "
|
733
|
-
},
|
734
|
-
{
|
735
|
-
"kind": "Content",
|
736
|
-
"text": "<TEventDetailMap extends "
|
787
|
+
"text": "emitter: <TEventDetailMap extends "
|
737
788
|
},
|
738
789
|
{
|
739
790
|
"kind": "Reference",
|
@@ -742,7 +793,11 @@
|
|
742
793
|
},
|
743
794
|
{
|
744
795
|
"kind": "Content",
|
745
|
-
"text": ">() =>
|
796
|
+
"text": ">() => "
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"kind": "Content",
|
800
|
+
"text": "{\n emit: <K extends keyof TEventDetailMap>(...args: TEventDetailMap[K] extends void ? [origin: "
|
746
801
|
},
|
747
802
|
{
|
748
803
|
"kind": "Reference",
|
@@ -782,13 +837,27 @@
|
|
782
837
|
}
|
783
838
|
],
|
784
839
|
"fileUrlPath": "src/eventEmitter/emitterFunction.ts",
|
785
|
-
"
|
786
|
-
|
787
|
-
"name": "emitter",
|
788
|
-
"variableTypeTokenRange": {
|
789
|
-
"startIndex": 1,
|
840
|
+
"returnTypeTokenRange": {
|
841
|
+
"startIndex": 3,
|
790
842
|
"endIndex": 12
|
791
|
-
}
|
843
|
+
},
|
844
|
+
"releaseTag": "Public",
|
845
|
+
"overloadIndex": 1,
|
846
|
+
"parameters": [],
|
847
|
+
"typeParameters": [
|
848
|
+
{
|
849
|
+
"typeParameterName": "TEventDetailMap",
|
850
|
+
"constraintTokenRange": {
|
851
|
+
"startIndex": 1,
|
852
|
+
"endIndex": 2
|
853
|
+
},
|
854
|
+
"defaultTypeTokenRange": {
|
855
|
+
"startIndex": 0,
|
856
|
+
"endIndex": 0
|
857
|
+
}
|
858
|
+
}
|
859
|
+
],
|
860
|
+
"name": "emitter"
|
792
861
|
},
|
793
862
|
{
|
794
863
|
"kind": "TypeAlias",
|
@@ -822,17 +891,13 @@
|
|
822
891
|
}
|
823
892
|
},
|
824
893
|
{
|
825
|
-
"kind": "
|
826
|
-
"canonicalReference": "@genesislcap/foundation-events!EventEmitter:
|
894
|
+
"kind": "Function",
|
895
|
+
"canonicalReference": "@genesislcap/foundation-events!EventEmitter:function(1)",
|
827
896
|
"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",
|
828
897
|
"excerptTokens": [
|
829
898
|
{
|
830
899
|
"kind": "Content",
|
831
|
-
"text": "EventEmitter: "
|
832
|
-
},
|
833
|
-
{
|
834
|
-
"kind": "Content",
|
835
|
-
"text": "<TEventDetailMap extends "
|
900
|
+
"text": "EventEmitter: <TEventDetailMap extends "
|
836
901
|
},
|
837
902
|
{
|
838
903
|
"kind": "Reference",
|
@@ -886,7 +951,15 @@
|
|
886
951
|
},
|
887
952
|
{
|
888
953
|
"kind": "Content",
|
889
|
-
"text": "<TTarget>
|
954
|
+
"text": "<TTarget>"
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"kind": "Content",
|
958
|
+
"text": ") => "
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"kind": "Content",
|
962
|
+
"text": "abstract new (...args: any[]) => {\n $emit<K extends keyof TEventDetailMap & string>(...args: TEventDetailMap[K] extends void ? [type: K, options?: "
|
890
963
|
},
|
891
964
|
{
|
892
965
|
"kind": "Reference",
|
@@ -913,7 +986,7 @@
|
|
913
986
|
},
|
914
987
|
{
|
915
988
|
"kind": "Content",
|
916
|
-
"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: "
|
989
|
+
"text": ";\n accessKey: string;\n readonly accessKeyLabel: string;\n autocapitalize: string;\n autocorrect: boolean;\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: "
|
917
990
|
},
|
918
991
|
{
|
919
992
|
"kind": "Reference",
|
@@ -922,7 +995,7 @@
|
|
922
995
|
},
|
923
996
|
{
|
924
997
|
"kind": "Content",
|
925
|
-
"text": ";\n readonly offsetTop: number;\n readonly offsetWidth: number;\n outerText: string;\n spellcheck: boolean;\n title: string;\n translate: boolean;\n attachInternals(): "
|
998
|
+
"text": " | null;\n readonly offsetTop: number;\n readonly offsetWidth: number;\n outerText: string;\n popover: string | null;\n spellcheck: boolean;\n title: string;\n translate: boolean;\n writingSuggestions: string;\n attachInternals(): "
|
926
999
|
},
|
927
1000
|
{
|
928
1001
|
"kind": "Reference",
|
@@ -931,7 +1004,7 @@
|
|
931
1004
|
},
|
932
1005
|
{
|
933
1006
|
"kind": "Content",
|
934
|
-
"text": ";\n click(): void;\n addEventListener<
|
1007
|
+
"text": ";\n click(): void;\n hidePopover(): void;\n showPopover(): void;\n togglePopover(options?: boolean): boolean;\n addEventListener<K extends keyof "
|
935
1008
|
},
|
936
1009
|
{
|
937
1010
|
"kind": "Reference",
|
@@ -940,7 +1013,7 @@
|
|
940
1013
|
},
|
941
1014
|
{
|
942
1015
|
"kind": "Content",
|
943
|
-
"text": ">(type:
|
1016
|
+
"text": ">(type: K, listener: (this: "
|
944
1017
|
},
|
945
1018
|
{
|
946
1019
|
"kind": "Reference",
|
@@ -958,7 +1031,7 @@
|
|
958
1031
|
},
|
959
1032
|
{
|
960
1033
|
"kind": "Content",
|
961
|
-
"text": "[
|
1034
|
+
"text": "[K]) => any, options?: boolean | "
|
962
1035
|
},
|
963
1036
|
{
|
964
1037
|
"kind": "Reference",
|
@@ -985,7 +1058,7 @@
|
|
985
1058
|
},
|
986
1059
|
{
|
987
1060
|
"kind": "Content",
|
988
|
-
"text": "): void;\n removeEventListener<
|
1061
|
+
"text": "): void;\n removeEventListener<K extends keyof "
|
989
1062
|
},
|
990
1063
|
{
|
991
1064
|
"kind": "Reference",
|
@@ -994,7 +1067,7 @@
|
|
994
1067
|
},
|
995
1068
|
{
|
996
1069
|
"kind": "Content",
|
997
|
-
"text": ">(type:
|
1070
|
+
"text": ">(type: K, listener: (this: "
|
998
1071
|
},
|
999
1072
|
{
|
1000
1073
|
"kind": "Reference",
|
@@ -1012,7 +1085,7 @@
|
|
1012
1085
|
},
|
1013
1086
|
{
|
1014
1087
|
"kind": "Content",
|
1015
|
-
"text": "[
|
1088
|
+
"text": "[K]) => any, options?: boolean | "
|
1016
1089
|
},
|
1017
1090
|
{
|
1018
1091
|
"kind": "Reference",
|
@@ -1048,7 +1121,7 @@
|
|
1048
1121
|
},
|
1049
1122
|
{
|
1050
1123
|
"kind": "Content",
|
1051
|
-
"text": ";\n
|
1124
|
+
"text": ";\n get classList(): "
|
1052
1125
|
},
|
1053
1126
|
{
|
1054
1127
|
"kind": "Reference",
|
@@ -1057,7 +1130,7 @@
|
|
1057
1130
|
},
|
1058
1131
|
{
|
1059
1132
|
"kind": "Content",
|
1060
|
-
"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: "
|
1133
|
+
"text": ";\n set classList(value: string);\n className: string;\n readonly clientHeight: number;\n readonly clientLeft: number;\n readonly clientTop: number;\n readonly clientWidth: number;\n readonly currentCSSZoom: number;\n id: string;\n innerHTML: string;\n readonly localName: string;\n readonly namespaceURI: string | null;\n onfullscreenchange: (this: "
|
1061
1134
|
},
|
1062
1135
|
{
|
1063
1136
|
"kind": "Reference",
|
@@ -1102,7 +1175,7 @@
|
|
1102
1175
|
},
|
1103
1176
|
{
|
1104
1177
|
"kind": "Content",
|
1105
|
-
"text": ";\n
|
1178
|
+
"text": ";\n get part(): "
|
1106
1179
|
},
|
1107
1180
|
{
|
1108
1181
|
"kind": "Reference",
|
@@ -1111,7 +1184,7 @@
|
|
1111
1184
|
},
|
1112
1185
|
{
|
1113
1186
|
"kind": "Content",
|
1114
|
-
"text": ";\n readonly prefix: string;\n readonly scrollHeight: number;\n scrollLeft: number;\n scrollTop: number;\n readonly scrollWidth: number;\n readonly shadowRoot: "
|
1187
|
+
"text": ";\n set part(value: string);\n readonly prefix: string | null;\n readonly scrollHeight: number;\n scrollLeft: number;\n scrollTop: number;\n readonly scrollWidth: number;\n readonly shadowRoot: "
|
1115
1188
|
},
|
1116
1189
|
{
|
1117
1190
|
"kind": "Reference",
|
@@ -1120,7 +1193,7 @@
|
|
1120
1193
|
},
|
1121
1194
|
{
|
1122
1195
|
"kind": "Content",
|
1123
|
-
"text": ";\n slot: string;\n readonly tagName: string;\n attachShadow(init: "
|
1196
|
+
"text": " | null;\n slot: string;\n readonly tagName: string;\n attachShadow(init: "
|
1124
1197
|
},
|
1125
1198
|
{
|
1126
1199
|
"kind": "Reference",
|
@@ -1138,7 +1211,16 @@
|
|
1138
1211
|
},
|
1139
1212
|
{
|
1140
1213
|
"kind": "Content",
|
1141
|
-
"text": ";\n
|
1214
|
+
"text": ";\n checkVisibility(options?: "
|
1215
|
+
},
|
1216
|
+
{
|
1217
|
+
"kind": "Reference",
|
1218
|
+
"text": "CheckVisibilityOptions",
|
1219
|
+
"canonicalReference": "!CheckVisibilityOptions:interface"
|
1220
|
+
},
|
1221
|
+
{
|
1222
|
+
"kind": "Content",
|
1223
|
+
"text": "): boolean;\n closest<K extends keyof "
|
1142
1224
|
},
|
1143
1225
|
{
|
1144
1226
|
"kind": "Reference",
|
@@ -1147,7 +1229,7 @@
|
|
1147
1229
|
},
|
1148
1230
|
{
|
1149
1231
|
"kind": "Content",
|
1150
|
-
"text": ">(selector:
|
1232
|
+
"text": ">(selector: K): "
|
1151
1233
|
},
|
1152
1234
|
{
|
1153
1235
|
"kind": "Reference",
|
@@ -1156,7 +1238,7 @@
|
|
1156
1238
|
},
|
1157
1239
|
{
|
1158
1240
|
"kind": "Content",
|
1159
|
-
"text": "[
|
1241
|
+
"text": "[K];\n closest<K extends keyof "
|
1160
1242
|
},
|
1161
1243
|
{
|
1162
1244
|
"kind": "Reference",
|
@@ -1165,7 +1247,7 @@
|
|
1165
1247
|
},
|
1166
1248
|
{
|
1167
1249
|
"kind": "Content",
|
1168
|
-
"text": ">(selector:
|
1250
|
+
"text": ">(selector: K): "
|
1169
1251
|
},
|
1170
1252
|
{
|
1171
1253
|
"kind": "Reference",
|
@@ -1174,7 +1256,25 @@
|
|
1174
1256
|
},
|
1175
1257
|
{
|
1176
1258
|
"kind": "Content",
|
1177
|
-
"text": "[
|
1259
|
+
"text": "[K];\n closest<K extends keyof "
|
1260
|
+
},
|
1261
|
+
{
|
1262
|
+
"kind": "Reference",
|
1263
|
+
"text": "MathMLElementTagNameMap",
|
1264
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
1265
|
+
},
|
1266
|
+
{
|
1267
|
+
"kind": "Content",
|
1268
|
+
"text": ">(selector: K): "
|
1269
|
+
},
|
1270
|
+
{
|
1271
|
+
"kind": "Reference",
|
1272
|
+
"text": "MathMLElementTagNameMap",
|
1273
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
1274
|
+
},
|
1275
|
+
{
|
1276
|
+
"kind": "Content",
|
1277
|
+
"text": "[K];\n closest<E extends "
|
1178
1278
|
},
|
1179
1279
|
{
|
1180
1280
|
"kind": "Reference",
|
@@ -1192,7 +1292,16 @@
|
|
1192
1292
|
},
|
1193
1293
|
{
|
1194
1294
|
"kind": "Content",
|
1195
|
-
"text": ">(selectors: string): E;\n
|
1295
|
+
"text": ">(selectors: string): E;\n computedStyleMap(): "
|
1296
|
+
},
|
1297
|
+
{
|
1298
|
+
"kind": "Reference",
|
1299
|
+
"text": "StylePropertyMapReadOnly",
|
1300
|
+
"canonicalReference": "!StylePropertyMapReadOnly:interface"
|
1301
|
+
},
|
1302
|
+
{
|
1303
|
+
"kind": "Content",
|
1304
|
+
"text": ";\n getAttribute(qualifiedName: string): string | null;\n getAttributeNS(namespace: string | null, localName: string): string | null;\n getAttributeNames(): string[];\n getAttributeNode(qualifiedName: string): "
|
1196
1305
|
},
|
1197
1306
|
{
|
1198
1307
|
"kind": "Reference",
|
@@ -1201,7 +1310,7 @@
|
|
1201
1310
|
},
|
1202
1311
|
{
|
1203
1312
|
"kind": "Content",
|
1204
|
-
"text": ";\n getAttributeNodeNS(namespace: string, localName: string): "
|
1313
|
+
"text": " | null;\n getAttributeNodeNS(namespace: string | null, localName: string): "
|
1205
1314
|
},
|
1206
1315
|
{
|
1207
1316
|
"kind": "Reference",
|
@@ -1210,7 +1319,7 @@
|
|
1210
1319
|
},
|
1211
1320
|
{
|
1212
1321
|
"kind": "Content",
|
1213
|
-
"text": ";\n getBoundingClientRect(): "
|
1322
|
+
"text": " | null;\n getBoundingClientRect(): "
|
1214
1323
|
},
|
1215
1324
|
{
|
1216
1325
|
"kind": "Reference",
|
@@ -1246,7 +1355,7 @@
|
|
1246
1355
|
},
|
1247
1356
|
{
|
1248
1357
|
"kind": "Content",
|
1249
|
-
"text": ">;\n getElementsByTagName<
|
1358
|
+
"text": ">;\n getElementsByTagName<K extends keyof "
|
1250
1359
|
},
|
1251
1360
|
{
|
1252
1361
|
"kind": "Reference",
|
@@ -1255,7 +1364,7 @@
|
|
1255
1364
|
},
|
1256
1365
|
{
|
1257
1366
|
"kind": "Content",
|
1258
|
-
"text": ">(qualifiedName:
|
1367
|
+
"text": ">(qualifiedName: K): "
|
1259
1368
|
},
|
1260
1369
|
{
|
1261
1370
|
"kind": "Reference",
|
@@ -1273,7 +1382,7 @@
|
|
1273
1382
|
},
|
1274
1383
|
{
|
1275
1384
|
"kind": "Content",
|
1276
|
-
"text": "[
|
1385
|
+
"text": "[K]>;\n getElementsByTagName<K extends keyof "
|
1277
1386
|
},
|
1278
1387
|
{
|
1279
1388
|
"kind": "Reference",
|
@@ -1282,7 +1391,7 @@
|
|
1282
1391
|
},
|
1283
1392
|
{
|
1284
1393
|
"kind": "Content",
|
1285
|
-
"text": ">(qualifiedName:
|
1394
|
+
"text": ">(qualifiedName: K): "
|
1286
1395
|
},
|
1287
1396
|
{
|
1288
1397
|
"kind": "Reference",
|
@@ -1300,7 +1409,61 @@
|
|
1300
1409
|
},
|
1301
1410
|
{
|
1302
1411
|
"kind": "Content",
|
1303
|
-
"text": "[
|
1412
|
+
"text": "[K]>;\n getElementsByTagName<K extends keyof "
|
1413
|
+
},
|
1414
|
+
{
|
1415
|
+
"kind": "Reference",
|
1416
|
+
"text": "MathMLElementTagNameMap",
|
1417
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
1418
|
+
},
|
1419
|
+
{
|
1420
|
+
"kind": "Content",
|
1421
|
+
"text": ">(qualifiedName: K): "
|
1422
|
+
},
|
1423
|
+
{
|
1424
|
+
"kind": "Reference",
|
1425
|
+
"text": "HTMLCollectionOf",
|
1426
|
+
"canonicalReference": "!HTMLCollectionOf:interface"
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
"kind": "Content",
|
1430
|
+
"text": "<"
|
1431
|
+
},
|
1432
|
+
{
|
1433
|
+
"kind": "Reference",
|
1434
|
+
"text": "MathMLElementTagNameMap",
|
1435
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
1436
|
+
},
|
1437
|
+
{
|
1438
|
+
"kind": "Content",
|
1439
|
+
"text": "[K]>;\n getElementsByTagName<K extends keyof "
|
1440
|
+
},
|
1441
|
+
{
|
1442
|
+
"kind": "Reference",
|
1443
|
+
"text": "HTMLElementDeprecatedTagNameMap",
|
1444
|
+
"canonicalReference": "!HTMLElementDeprecatedTagNameMap:interface"
|
1445
|
+
},
|
1446
|
+
{
|
1447
|
+
"kind": "Content",
|
1448
|
+
"text": ">(qualifiedName: K): "
|
1449
|
+
},
|
1450
|
+
{
|
1451
|
+
"kind": "Reference",
|
1452
|
+
"text": "HTMLCollectionOf",
|
1453
|
+
"canonicalReference": "!HTMLCollectionOf:interface"
|
1454
|
+
},
|
1455
|
+
{
|
1456
|
+
"kind": "Content",
|
1457
|
+
"text": "<"
|
1458
|
+
},
|
1459
|
+
{
|
1460
|
+
"kind": "Reference",
|
1461
|
+
"text": "HTMLElementDeprecatedTagNameMap",
|
1462
|
+
"canonicalReference": "!HTMLElementDeprecatedTagNameMap:interface"
|
1463
|
+
},
|
1464
|
+
{
|
1465
|
+
"kind": "Content",
|
1466
|
+
"text": "[K]>;\n getElementsByTagName(qualifiedName: string): "
|
1304
1467
|
},
|
1305
1468
|
{
|
1306
1469
|
"kind": "Reference",
|
@@ -1354,7 +1517,25 @@
|
|
1354
1517
|
},
|
1355
1518
|
{
|
1356
1519
|
"kind": "Content",
|
1357
|
-
"text": ">;\n getElementsByTagNameNS(
|
1520
|
+
"text": ">;\n getElementsByTagNameNS(namespaceURI: \"http://www.w3.org/1998/Math/MathML\", localName: string): "
|
1521
|
+
},
|
1522
|
+
{
|
1523
|
+
"kind": "Reference",
|
1524
|
+
"text": "HTMLCollectionOf",
|
1525
|
+
"canonicalReference": "!HTMLCollectionOf:interface"
|
1526
|
+
},
|
1527
|
+
{
|
1528
|
+
"kind": "Content",
|
1529
|
+
"text": "<"
|
1530
|
+
},
|
1531
|
+
{
|
1532
|
+
"kind": "Reference",
|
1533
|
+
"text": "MathMLElement",
|
1534
|
+
"canonicalReference": "!MathMLElement:interface"
|
1535
|
+
},
|
1536
|
+
{
|
1537
|
+
"kind": "Content",
|
1538
|
+
"text": ">;\n getElementsByTagNameNS(namespace: string | null, localName: string): "
|
1358
1539
|
},
|
1359
1540
|
{
|
1360
1541
|
"kind": "Reference",
|
@@ -1372,7 +1553,16 @@
|
|
1372
1553
|
},
|
1373
1554
|
{
|
1374
1555
|
"kind": "Content",
|
1375
|
-
"text": ">;\n
|
1556
|
+
"text": ">;\n getHTML(options?: "
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"kind": "Reference",
|
1560
|
+
"text": "GetHTMLOptions",
|
1561
|
+
"canonicalReference": "!GetHTMLOptions:interface"
|
1562
|
+
},
|
1563
|
+
{
|
1564
|
+
"kind": "Content",
|
1565
|
+
"text": "): string;\n hasAttribute(qualifiedName: string): boolean;\n hasAttributeNS(namespace: string | null, localName: string): boolean;\n hasAttributes(): boolean;\n hasPointerCapture(pointerId: number): boolean;\n insertAdjacentElement(where: "
|
1376
1566
|
},
|
1377
1567
|
{
|
1378
1568
|
"kind": "Reference",
|
@@ -1399,7 +1589,7 @@
|
|
1399
1589
|
},
|
1400
1590
|
{
|
1401
1591
|
"kind": "Content",
|
1402
|
-
"text": ";\n insertAdjacentHTML(position: "
|
1592
|
+
"text": " | null;\n insertAdjacentHTML(position: "
|
1403
1593
|
},
|
1404
1594
|
{
|
1405
1595
|
"kind": "Reference",
|
@@ -1408,7 +1598,7 @@
|
|
1408
1598
|
},
|
1409
1599
|
{
|
1410
1600
|
"kind": "Content",
|
1411
|
-
"text": ",
|
1601
|
+
"text": ", string: string): void;\n insertAdjacentText(where: "
|
1412
1602
|
},
|
1413
1603
|
{
|
1414
1604
|
"kind": "Reference",
|
@@ -1417,7 +1607,7 @@
|
|
1417
1607
|
},
|
1418
1608
|
{
|
1419
1609
|
"kind": "Content",
|
1420
|
-
"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: "
|
1610
|
+
"text": ", data: string): void;\n matches(selectors: string): boolean;\n releasePointerCapture(pointerId: number): void;\n removeAttribute(qualifiedName: string): void;\n removeAttributeNS(namespace: string | null, localName: string): void;\n removeAttributeNode(attr: "
|
1421
1611
|
},
|
1422
1612
|
{
|
1423
1613
|
"kind": "Reference",
|
@@ -1453,7 +1643,25 @@
|
|
1453
1643
|
},
|
1454
1644
|
{
|
1455
1645
|
"kind": "Content",
|
1456
|
-
"text": "<void>;\n requestPointerLock(
|
1646
|
+
"text": "<void>;\n requestPointerLock(options?: "
|
1647
|
+
},
|
1648
|
+
{
|
1649
|
+
"kind": "Reference",
|
1650
|
+
"text": "PointerLockOptions",
|
1651
|
+
"canonicalReference": "!PointerLockOptions:interface"
|
1652
|
+
},
|
1653
|
+
{
|
1654
|
+
"kind": "Content",
|
1655
|
+
"text": "): "
|
1656
|
+
},
|
1657
|
+
{
|
1658
|
+
"kind": "Reference",
|
1659
|
+
"text": "Promise",
|
1660
|
+
"canonicalReference": "!Promise:interface"
|
1661
|
+
},
|
1662
|
+
{
|
1663
|
+
"kind": "Content",
|
1664
|
+
"text": "<void>;\n scroll(options?: "
|
1457
1665
|
},
|
1458
1666
|
{
|
1459
1667
|
"kind": "Reference",
|
@@ -1489,7 +1697,7 @@
|
|
1489
1697
|
},
|
1490
1698
|
{
|
1491
1699
|
"kind": "Content",
|
1492
|
-
"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: "
|
1700
|
+
"text": "): void;\n scrollTo(x: number, y: number): void;\n setAttribute(qualifiedName: string, value: string): void;\n setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;\n setAttributeNode(attr: "
|
1493
1701
|
},
|
1494
1702
|
{
|
1495
1703
|
"kind": "Reference",
|
@@ -1507,7 +1715,7 @@
|
|
1507
1715
|
},
|
1508
1716
|
{
|
1509
1717
|
"kind": "Content",
|
1510
|
-
"text": ";\n setAttributeNodeNS(attr: "
|
1718
|
+
"text": " | null;\n setAttributeNodeNS(attr: "
|
1511
1719
|
},
|
1512
1720
|
{
|
1513
1721
|
"kind": "Reference",
|
@@ -1525,7 +1733,7 @@
|
|
1525
1733
|
},
|
1526
1734
|
{
|
1527
1735
|
"kind": "Content",
|
1528
|
-
"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: "
|
1736
|
+
"text": " | null;\n setHTMLUnsafe(html: string): void;\n setPointerCapture(pointerId: number): void;\n toggleAttribute(qualifiedName: string, force?: boolean): boolean;\n webkitMatchesSelector(selectors: string): boolean;\n textContent: string;\n readonly baseURI: string;\n readonly childNodes: "
|
1529
1737
|
},
|
1530
1738
|
{
|
1531
1739
|
"kind": "Reference",
|
@@ -1552,7 +1760,7 @@
|
|
1552
1760
|
},
|
1553
1761
|
{
|
1554
1762
|
"kind": "Content",
|
1555
|
-
"text": ";\n readonly isConnected: boolean;\n readonly lastChild: "
|
1763
|
+
"text": " | null;\n readonly isConnected: boolean;\n readonly lastChild: "
|
1556
1764
|
},
|
1557
1765
|
{
|
1558
1766
|
"kind": "Reference",
|
@@ -1561,7 +1769,7 @@
|
|
1561
1769
|
},
|
1562
1770
|
{
|
1563
1771
|
"kind": "Content",
|
1564
|
-
"text": ";\n readonly nextSibling: "
|
1772
|
+
"text": " | null;\n readonly nextSibling: "
|
1565
1773
|
},
|
1566
1774
|
{
|
1567
1775
|
"kind": "Reference",
|
@@ -1570,7 +1778,7 @@
|
|
1570
1778
|
},
|
1571
1779
|
{
|
1572
1780
|
"kind": "Content",
|
1573
|
-
"text": ";\n readonly nodeName: string;\n readonly nodeType: number;\n nodeValue: string;\n readonly parentElement: "
|
1781
|
+
"text": " | null;\n readonly nodeName: string;\n readonly nodeType: number;\n nodeValue: string | null;\n readonly parentElement: "
|
1574
1782
|
},
|
1575
1783
|
{
|
1576
1784
|
"kind": "Reference",
|
@@ -1579,7 +1787,7 @@
|
|
1579
1787
|
},
|
1580
1788
|
{
|
1581
1789
|
"kind": "Content",
|
1582
|
-
"text": ";\n readonly parentNode: "
|
1790
|
+
"text": " | null;\n readonly parentNode: "
|
1583
1791
|
},
|
1584
1792
|
{
|
1585
1793
|
"kind": "Reference",
|
@@ -1588,7 +1796,7 @@
|
|
1588
1796
|
},
|
1589
1797
|
{
|
1590
1798
|
"kind": "Content",
|
1591
|
-
"text": ";\n readonly previousSibling: "
|
1799
|
+
"text": " | null;\n readonly previousSibling: "
|
1592
1800
|
},
|
1593
1801
|
{
|
1594
1802
|
"kind": "Reference",
|
@@ -1597,7 +1805,7 @@
|
|
1597
1805
|
},
|
1598
1806
|
{
|
1599
1807
|
"kind": "Content",
|
1600
|
-
"text": "
|
1808
|
+
"text": " | null;\n appendChild<T extends "
|
1601
1809
|
},
|
1602
1810
|
{
|
1603
1811
|
"kind": "Reference",
|
@@ -1606,7 +1814,7 @@
|
|
1606
1814
|
},
|
1607
1815
|
{
|
1608
1816
|
"kind": "Content",
|
1609
|
-
"text": ">(node: T): T;\n cloneNode(
|
1817
|
+
"text": ">(node: T): T;\n cloneNode(subtree?: boolean): "
|
1610
1818
|
},
|
1611
1819
|
{
|
1612
1820
|
"kind": "Reference",
|
@@ -1633,7 +1841,7 @@
|
|
1633
1841
|
},
|
1634
1842
|
{
|
1635
1843
|
"kind": "Content",
|
1636
|
-
"text": "): boolean;\n getRootNode(options?: "
|
1844
|
+
"text": " | null): boolean;\n getRootNode(options?: "
|
1637
1845
|
},
|
1638
1846
|
{
|
1639
1847
|
"kind": "Reference",
|
@@ -1651,7 +1859,7 @@
|
|
1651
1859
|
},
|
1652
1860
|
{
|
1653
1861
|
"kind": "Content",
|
1654
|
-
"text": ";\n hasChildNodes(): boolean;\n insertBefore<
|
1862
|
+
"text": ";\n hasChildNodes(): boolean;\n insertBefore<T extends "
|
1655
1863
|
},
|
1656
1864
|
{
|
1657
1865
|
"kind": "Reference",
|
@@ -1660,7 +1868,7 @@
|
|
1660
1868
|
},
|
1661
1869
|
{
|
1662
1870
|
"kind": "Content",
|
1663
|
-
"text": ">(node:
|
1871
|
+
"text": ">(node: T, child: "
|
1664
1872
|
},
|
1665
1873
|
{
|
1666
1874
|
"kind": "Reference",
|
@@ -1669,7 +1877,7 @@
|
|
1669
1877
|
},
|
1670
1878
|
{
|
1671
1879
|
"kind": "Content",
|
1672
|
-
"text": "):
|
1880
|
+
"text": " | null): T;\n isDefaultNamespace(namespace: string | null): boolean;\n isEqualNode(otherNode: "
|
1673
1881
|
},
|
1674
1882
|
{
|
1675
1883
|
"kind": "Reference",
|
@@ -1678,7 +1886,7 @@
|
|
1678
1886
|
},
|
1679
1887
|
{
|
1680
1888
|
"kind": "Content",
|
1681
|
-
"text": "): boolean;\n isSameNode(otherNode: "
|
1889
|
+
"text": " | null): boolean;\n isSameNode(otherNode: "
|
1682
1890
|
},
|
1683
1891
|
{
|
1684
1892
|
"kind": "Reference",
|
@@ -1687,7 +1895,7 @@
|
|
1687
1895
|
},
|
1688
1896
|
{
|
1689
1897
|
"kind": "Content",
|
1690
|
-
"text": "): boolean;\n lookupNamespaceURI(prefix: string): string;\n lookupPrefix(namespace: string): string;\n normalize(): void;\n removeChild<
|
1898
|
+
"text": " | null): boolean;\n lookupNamespaceURI(prefix: string | null): string | null;\n lookupPrefix(namespace: string | null): string | null;\n normalize(): void;\n removeChild<T extends "
|
1691
1899
|
},
|
1692
1900
|
{
|
1693
1901
|
"kind": "Reference",
|
@@ -1696,7 +1904,7 @@
|
|
1696
1904
|
},
|
1697
1905
|
{
|
1698
1906
|
"kind": "Content",
|
1699
|
-
"text": ">(child:
|
1907
|
+
"text": ">(child: T): T;\n replaceChild<T extends "
|
1700
1908
|
},
|
1701
1909
|
{
|
1702
1910
|
"kind": "Reference",
|
@@ -1714,7 +1922,7 @@
|
|
1714
1922
|
},
|
1715
1923
|
{
|
1716
1924
|
"kind": "Content",
|
1717
|
-
"text": ", child:
|
1925
|
+
"text": ", child: T): T;\n readonly ELEMENT_NODE: 1;\n readonly ATTRIBUTE_NODE: 2;\n readonly TEXT_NODE: 3;\n readonly CDATA_SECTION_NODE: 4;\n readonly ENTITY_REFERENCE_NODE: 5;\n readonly ENTITY_NODE: 6;\n readonly PROCESSING_INSTRUCTION_NODE: 7;\n readonly COMMENT_NODE: 8;\n readonly DOCUMENT_NODE: 9;\n readonly DOCUMENT_TYPE_NODE: 10;\n readonly DOCUMENT_FRAGMENT_NODE: 11;\n readonly NOTATION_NODE: 12;\n readonly DOCUMENT_POSITION_DISCONNECTED: 1;\n readonly DOCUMENT_POSITION_PRECEDING: 2;\n readonly DOCUMENT_POSITION_FOLLOWING: 4;\n readonly DOCUMENT_POSITION_CONTAINS: 8;\n readonly DOCUMENT_POSITION_CONTAINED_BY: 16;\n readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;\n dispatchEvent(event: "
|
1718
1926
|
},
|
1719
1927
|
{
|
1720
1928
|
"kind": "Reference",
|
@@ -1723,7 +1931,142 @@
|
|
1723
1931
|
},
|
1724
1932
|
{
|
1725
1933
|
"kind": "Content",
|
1726
|
-
"text": "): boolean;\n
|
1934
|
+
"text": "): boolean;\n ariaActiveDescendantElement: "
|
1935
|
+
},
|
1936
|
+
{
|
1937
|
+
"kind": "Reference",
|
1938
|
+
"text": "Element",
|
1939
|
+
"canonicalReference": "!Element:interface"
|
1940
|
+
},
|
1941
|
+
{
|
1942
|
+
"kind": "Content",
|
1943
|
+
"text": " | null;\n ariaAtomic: string | null;\n ariaAutoComplete: string | null;\n ariaBrailleLabel: string | null;\n ariaBrailleRoleDescription: string | null;\n ariaBusy: string | null;\n ariaChecked: string | null;\n ariaColCount: string | null;\n ariaColIndex: string | null;\n ariaColIndexText: string | null;\n ariaColSpan: string | null;\n ariaControlsElements: "
|
1944
|
+
},
|
1945
|
+
{
|
1946
|
+
"kind": "Reference",
|
1947
|
+
"text": "ReadonlyArray",
|
1948
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
1949
|
+
},
|
1950
|
+
{
|
1951
|
+
"kind": "Content",
|
1952
|
+
"text": "<"
|
1953
|
+
},
|
1954
|
+
{
|
1955
|
+
"kind": "Reference",
|
1956
|
+
"text": "Element",
|
1957
|
+
"canonicalReference": "!Element:interface"
|
1958
|
+
},
|
1959
|
+
{
|
1960
|
+
"kind": "Content",
|
1961
|
+
"text": "> | null;\n ariaCurrent: string | null;\n ariaDescribedByElements: "
|
1962
|
+
},
|
1963
|
+
{
|
1964
|
+
"kind": "Reference",
|
1965
|
+
"text": "ReadonlyArray",
|
1966
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
1967
|
+
},
|
1968
|
+
{
|
1969
|
+
"kind": "Content",
|
1970
|
+
"text": "<"
|
1971
|
+
},
|
1972
|
+
{
|
1973
|
+
"kind": "Reference",
|
1974
|
+
"text": "Element",
|
1975
|
+
"canonicalReference": "!Element:interface"
|
1976
|
+
},
|
1977
|
+
{
|
1978
|
+
"kind": "Content",
|
1979
|
+
"text": "> | null;\n ariaDescription: string | null;\n ariaDetailsElements: "
|
1980
|
+
},
|
1981
|
+
{
|
1982
|
+
"kind": "Reference",
|
1983
|
+
"text": "ReadonlyArray",
|
1984
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
1985
|
+
},
|
1986
|
+
{
|
1987
|
+
"kind": "Content",
|
1988
|
+
"text": "<"
|
1989
|
+
},
|
1990
|
+
{
|
1991
|
+
"kind": "Reference",
|
1992
|
+
"text": "Element",
|
1993
|
+
"canonicalReference": "!Element:interface"
|
1994
|
+
},
|
1995
|
+
{
|
1996
|
+
"kind": "Content",
|
1997
|
+
"text": "> | null;\n ariaDisabled: string | null;\n ariaErrorMessageElements: "
|
1998
|
+
},
|
1999
|
+
{
|
2000
|
+
"kind": "Reference",
|
2001
|
+
"text": "ReadonlyArray",
|
2002
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
2003
|
+
},
|
2004
|
+
{
|
2005
|
+
"kind": "Content",
|
2006
|
+
"text": "<"
|
2007
|
+
},
|
2008
|
+
{
|
2009
|
+
"kind": "Reference",
|
2010
|
+
"text": "Element",
|
2011
|
+
"canonicalReference": "!Element:interface"
|
2012
|
+
},
|
2013
|
+
{
|
2014
|
+
"kind": "Content",
|
2015
|
+
"text": "> | null;\n ariaExpanded: string | null;\n ariaFlowToElements: "
|
2016
|
+
},
|
2017
|
+
{
|
2018
|
+
"kind": "Reference",
|
2019
|
+
"text": "ReadonlyArray",
|
2020
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
2021
|
+
},
|
2022
|
+
{
|
2023
|
+
"kind": "Content",
|
2024
|
+
"text": "<"
|
2025
|
+
},
|
2026
|
+
{
|
2027
|
+
"kind": "Reference",
|
2028
|
+
"text": "Element",
|
2029
|
+
"canonicalReference": "!Element:interface"
|
2030
|
+
},
|
2031
|
+
{
|
2032
|
+
"kind": "Content",
|
2033
|
+
"text": "> | null;\n ariaHasPopup: string | null;\n ariaHidden: string | null;\n ariaInvalid: string | null;\n ariaKeyShortcuts: string | null;\n ariaLabel: string | null;\n ariaLabelledByElements: "
|
2034
|
+
},
|
2035
|
+
{
|
2036
|
+
"kind": "Reference",
|
2037
|
+
"text": "ReadonlyArray",
|
2038
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
2039
|
+
},
|
2040
|
+
{
|
2041
|
+
"kind": "Content",
|
2042
|
+
"text": "<"
|
2043
|
+
},
|
2044
|
+
{
|
2045
|
+
"kind": "Reference",
|
2046
|
+
"text": "Element",
|
2047
|
+
"canonicalReference": "!Element:interface"
|
2048
|
+
},
|
2049
|
+
{
|
2050
|
+
"kind": "Content",
|
2051
|
+
"text": "> | null;\n ariaLevel: string | null;\n ariaLive: string | null;\n ariaModal: string | null;\n ariaMultiLine: string | null;\n ariaMultiSelectable: string | null;\n ariaOrientation: string | null;\n ariaOwnsElements: "
|
2052
|
+
},
|
2053
|
+
{
|
2054
|
+
"kind": "Reference",
|
2055
|
+
"text": "ReadonlyArray",
|
2056
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
2057
|
+
},
|
2058
|
+
{
|
2059
|
+
"kind": "Content",
|
2060
|
+
"text": "<"
|
2061
|
+
},
|
2062
|
+
{
|
2063
|
+
"kind": "Reference",
|
2064
|
+
"text": "Element",
|
2065
|
+
"canonicalReference": "!Element:interface"
|
2066
|
+
},
|
2067
|
+
{
|
2068
|
+
"kind": "Content",
|
2069
|
+
"text": "> | null;\n ariaPlaceholder: string | null;\n ariaPosInSet: string | null;\n ariaPressed: string | null;\n ariaReadOnly: string | null;\n ariaRelevant: string | null;\n ariaRequired: string | null;\n ariaRoleDescription: string | null;\n ariaRowCount: string | null;\n ariaRowIndex: string | null;\n ariaRowIndexText: string | null;\n ariaRowSpan: string | null;\n ariaSelected: string | null;\n ariaSetSize: string | null;\n ariaSort: string | null;\n ariaValueMax: string | null;\n ariaValueMin: string | null;\n ariaValueNow: string | null;\n ariaValueText: string | null;\n role: string | null;\n animate(keyframes: "
|
1727
2070
|
},
|
1728
2071
|
{
|
1729
2072
|
"kind": "Reference",
|
@@ -1741,7 +2084,7 @@
|
|
1741
2084
|
},
|
1742
2085
|
{
|
1743
2086
|
"kind": "Content",
|
1744
|
-
"text": ", options?: number | "
|
2087
|
+
"text": " | null, options?: number | "
|
1745
2088
|
},
|
1746
2089
|
{
|
1747
2090
|
"kind": "Reference",
|
@@ -1777,7 +2120,7 @@
|
|
1777
2120
|
},
|
1778
2121
|
{
|
1779
2122
|
"kind": "Content",
|
1780
|
-
"text": "[];\n after(...nodes: (
|
2123
|
+
"text": "[];\n after(...nodes: ("
|
1781
2124
|
},
|
1782
2125
|
{
|
1783
2126
|
"kind": "Reference",
|
@@ -1786,7 +2129,7 @@
|
|
1786
2129
|
},
|
1787
2130
|
{
|
1788
2131
|
"kind": "Content",
|
1789
|
-
"text": ")[]): void;\n before(...nodes: (
|
2132
|
+
"text": " | string)[]): void;\n before(...nodes: ("
|
1790
2133
|
},
|
1791
2134
|
{
|
1792
2135
|
"kind": "Reference",
|
@@ -1795,7 +2138,7 @@
|
|
1795
2138
|
},
|
1796
2139
|
{
|
1797
2140
|
"kind": "Content",
|
1798
|
-
"text": ")[]): void;\n remove(): void;\n replaceWith(...nodes: (
|
2141
|
+
"text": " | string)[]): void;\n remove(): void;\n replaceWith(...nodes: ("
|
1799
2142
|
},
|
1800
2143
|
{
|
1801
2144
|
"kind": "Reference",
|
@@ -1804,7 +2147,7 @@
|
|
1804
2147
|
},
|
1805
2148
|
{
|
1806
2149
|
"kind": "Content",
|
1807
|
-
"text": ")[]): void;\n
|
2150
|
+
"text": " | string)[]): void;\n readonly nextElementSibling: "
|
1808
2151
|
},
|
1809
2152
|
{
|
1810
2153
|
"kind": "Reference",
|
@@ -1813,7 +2156,7 @@
|
|
1813
2156
|
},
|
1814
2157
|
{
|
1815
2158
|
"kind": "Content",
|
1816
|
-
"text": ";\n readonly previousElementSibling: "
|
2159
|
+
"text": " | null;\n readonly previousElementSibling: "
|
1817
2160
|
},
|
1818
2161
|
{
|
1819
2162
|
"kind": "Reference",
|
@@ -1822,7 +2165,7 @@
|
|
1822
2165
|
},
|
1823
2166
|
{
|
1824
2167
|
"kind": "Content",
|
1825
|
-
"text": ";\n readonly childElementCount: number;\n readonly children: "
|
2168
|
+
"text": " | null;\n readonly childElementCount: number;\n readonly children: "
|
1826
2169
|
},
|
1827
2170
|
{
|
1828
2171
|
"kind": "Reference",
|
@@ -1840,7 +2183,7 @@
|
|
1840
2183
|
},
|
1841
2184
|
{
|
1842
2185
|
"kind": "Content",
|
1843
|
-
"text": ";\n readonly lastElementChild: "
|
2186
|
+
"text": " | null;\n readonly lastElementChild: "
|
1844
2187
|
},
|
1845
2188
|
{
|
1846
2189
|
"kind": "Reference",
|
@@ -1849,7 +2192,7 @@
|
|
1849
2192
|
},
|
1850
2193
|
{
|
1851
2194
|
"kind": "Content",
|
1852
|
-
"text": ";\n append(...nodes: (
|
2195
|
+
"text": " | null;\n append(...nodes: ("
|
1853
2196
|
},
|
1854
2197
|
{
|
1855
2198
|
"kind": "Reference",
|
@@ -1858,7 +2201,7 @@
|
|
1858
2201
|
},
|
1859
2202
|
{
|
1860
2203
|
"kind": "Content",
|
1861
|
-
"text": ")[]): void;\n prepend(...nodes: (
|
2204
|
+
"text": " | string)[]): void;\n prepend(...nodes: ("
|
1862
2205
|
},
|
1863
2206
|
{
|
1864
2207
|
"kind": "Reference",
|
@@ -1867,7 +2210,7 @@
|
|
1867
2210
|
},
|
1868
2211
|
{
|
1869
2212
|
"kind": "Content",
|
1870
|
-
"text": ")[]): void;\n querySelector<
|
2213
|
+
"text": " | string)[]): void;\n querySelector<K extends keyof "
|
1871
2214
|
},
|
1872
2215
|
{
|
1873
2216
|
"kind": "Reference",
|
@@ -1876,7 +2219,7 @@
|
|
1876
2219
|
},
|
1877
2220
|
{
|
1878
2221
|
"kind": "Content",
|
1879
|
-
"text": ">(selectors:
|
2222
|
+
"text": ">(selectors: K): "
|
1880
2223
|
},
|
1881
2224
|
{
|
1882
2225
|
"kind": "Reference",
|
@@ -1885,7 +2228,7 @@
|
|
1885
2228
|
},
|
1886
2229
|
{
|
1887
2230
|
"kind": "Content",
|
1888
|
-
"text": "[
|
2231
|
+
"text": "[K] | null;\n querySelector<K extends keyof "
|
1889
2232
|
},
|
1890
2233
|
{
|
1891
2234
|
"kind": "Reference",
|
@@ -1894,7 +2237,7 @@
|
|
1894
2237
|
},
|
1895
2238
|
{
|
1896
2239
|
"kind": "Content",
|
1897
|
-
"text": ">(selectors:
|
2240
|
+
"text": ">(selectors: K): "
|
1898
2241
|
},
|
1899
2242
|
{
|
1900
2243
|
"kind": "Reference",
|
@@ -1903,7 +2246,43 @@
|
|
1903
2246
|
},
|
1904
2247
|
{
|
1905
2248
|
"kind": "Content",
|
1906
|
-
"text": "[
|
2249
|
+
"text": "[K] | null;\n querySelector<K extends keyof "
|
2250
|
+
},
|
2251
|
+
{
|
2252
|
+
"kind": "Reference",
|
2253
|
+
"text": "MathMLElementTagNameMap",
|
2254
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
2255
|
+
},
|
2256
|
+
{
|
2257
|
+
"kind": "Content",
|
2258
|
+
"text": ">(selectors: K): "
|
2259
|
+
},
|
2260
|
+
{
|
2261
|
+
"kind": "Reference",
|
2262
|
+
"text": "MathMLElementTagNameMap",
|
2263
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
2264
|
+
},
|
2265
|
+
{
|
2266
|
+
"kind": "Content",
|
2267
|
+
"text": "[K] | null;\n querySelector<K extends keyof "
|
2268
|
+
},
|
2269
|
+
{
|
2270
|
+
"kind": "Reference",
|
2271
|
+
"text": "HTMLElementDeprecatedTagNameMap",
|
2272
|
+
"canonicalReference": "!HTMLElementDeprecatedTagNameMap:interface"
|
2273
|
+
},
|
2274
|
+
{
|
2275
|
+
"kind": "Content",
|
2276
|
+
"text": ">(selectors: K): "
|
2277
|
+
},
|
2278
|
+
{
|
2279
|
+
"kind": "Reference",
|
2280
|
+
"text": "HTMLElementDeprecatedTagNameMap",
|
2281
|
+
"canonicalReference": "!HTMLElementDeprecatedTagNameMap:interface"
|
2282
|
+
},
|
2283
|
+
{
|
2284
|
+
"kind": "Content",
|
2285
|
+
"text": "[K] | null;\n querySelector<E extends "
|
1907
2286
|
},
|
1908
2287
|
{
|
1909
2288
|
"kind": "Reference",
|
@@ -1921,7 +2300,7 @@
|
|
1921
2300
|
},
|
1922
2301
|
{
|
1923
2302
|
"kind": "Content",
|
1924
|
-
"text": ">(selectors: string):
|
2303
|
+
"text": ">(selectors: string): E | null;\n querySelectorAll<K extends keyof "
|
1925
2304
|
},
|
1926
2305
|
{
|
1927
2306
|
"kind": "Reference",
|
@@ -1930,7 +2309,7 @@
|
|
1930
2309
|
},
|
1931
2310
|
{
|
1932
2311
|
"kind": "Content",
|
1933
|
-
"text": ">(selectors:
|
2312
|
+
"text": ">(selectors: K): "
|
1934
2313
|
},
|
1935
2314
|
{
|
1936
2315
|
"kind": "Reference",
|
@@ -1948,7 +2327,7 @@
|
|
1948
2327
|
},
|
1949
2328
|
{
|
1950
2329
|
"kind": "Content",
|
1951
|
-
"text": "[
|
2330
|
+
"text": "[K]>;\n querySelectorAll<K extends keyof "
|
1952
2331
|
},
|
1953
2332
|
{
|
1954
2333
|
"kind": "Reference",
|
@@ -1957,7 +2336,7 @@
|
|
1957
2336
|
},
|
1958
2337
|
{
|
1959
2338
|
"kind": "Content",
|
1960
|
-
"text": ">(selectors:
|
2339
|
+
"text": ">(selectors: K): "
|
1961
2340
|
},
|
1962
2341
|
{
|
1963
2342
|
"kind": "Reference",
|
@@ -1975,7 +2354,61 @@
|
|
1975
2354
|
},
|
1976
2355
|
{
|
1977
2356
|
"kind": "Content",
|
1978
|
-
"text": "[
|
2357
|
+
"text": "[K]>;\n querySelectorAll<K extends keyof "
|
2358
|
+
},
|
2359
|
+
{
|
2360
|
+
"kind": "Reference",
|
2361
|
+
"text": "MathMLElementTagNameMap",
|
2362
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
2363
|
+
},
|
2364
|
+
{
|
2365
|
+
"kind": "Content",
|
2366
|
+
"text": ">(selectors: K): "
|
2367
|
+
},
|
2368
|
+
{
|
2369
|
+
"kind": "Reference",
|
2370
|
+
"text": "NodeListOf",
|
2371
|
+
"canonicalReference": "!NodeListOf:interface"
|
2372
|
+
},
|
2373
|
+
{
|
2374
|
+
"kind": "Content",
|
2375
|
+
"text": "<"
|
2376
|
+
},
|
2377
|
+
{
|
2378
|
+
"kind": "Reference",
|
2379
|
+
"text": "MathMLElementTagNameMap",
|
2380
|
+
"canonicalReference": "!MathMLElementTagNameMap:interface"
|
2381
|
+
},
|
2382
|
+
{
|
2383
|
+
"kind": "Content",
|
2384
|
+
"text": "[K]>;\n querySelectorAll<K extends keyof "
|
2385
|
+
},
|
2386
|
+
{
|
2387
|
+
"kind": "Reference",
|
2388
|
+
"text": "HTMLElementDeprecatedTagNameMap",
|
2389
|
+
"canonicalReference": "!HTMLElementDeprecatedTagNameMap:interface"
|
2390
|
+
},
|
2391
|
+
{
|
2392
|
+
"kind": "Content",
|
2393
|
+
"text": ">(selectors: K): "
|
2394
|
+
},
|
2395
|
+
{
|
2396
|
+
"kind": "Reference",
|
2397
|
+
"text": "NodeListOf",
|
2398
|
+
"canonicalReference": "!NodeListOf:interface"
|
2399
|
+
},
|
2400
|
+
{
|
2401
|
+
"kind": "Content",
|
2402
|
+
"text": "<"
|
2403
|
+
},
|
2404
|
+
{
|
2405
|
+
"kind": "Reference",
|
2406
|
+
"text": "HTMLElementDeprecatedTagNameMap",
|
2407
|
+
"canonicalReference": "!HTMLElementDeprecatedTagNameMap:interface"
|
2408
|
+
},
|
2409
|
+
{
|
2410
|
+
"kind": "Content",
|
2411
|
+
"text": "[K]>;\n querySelectorAll<E extends "
|
1979
2412
|
},
|
1980
2413
|
{
|
1981
2414
|
"kind": "Reference",
|
@@ -1993,39 +2426,75 @@
|
|
1993
2426
|
},
|
1994
2427
|
{
|
1995
2428
|
"kind": "Content",
|
1996
|
-
"text": ">(selectors: string): "
|
2429
|
+
"text": ">(selectors: string): "
|
2430
|
+
},
|
2431
|
+
{
|
2432
|
+
"kind": "Reference",
|
2433
|
+
"text": "NodeListOf",
|
2434
|
+
"canonicalReference": "!NodeListOf:interface"
|
2435
|
+
},
|
2436
|
+
{
|
2437
|
+
"kind": "Content",
|
2438
|
+
"text": "<E>;\n replaceChildren(...nodes: ("
|
2439
|
+
},
|
2440
|
+
{
|
2441
|
+
"kind": "Reference",
|
2442
|
+
"text": "Node",
|
2443
|
+
"canonicalReference": "!Node:interface"
|
2444
|
+
},
|
2445
|
+
{
|
2446
|
+
"kind": "Content",
|
2447
|
+
"text": " | string)[]): void;\n readonly assignedSlot: "
|
2448
|
+
},
|
2449
|
+
{
|
2450
|
+
"kind": "Reference",
|
2451
|
+
"text": "HTMLSlotElement",
|
2452
|
+
"canonicalReference": "!HTMLSlotElement:interface"
|
2453
|
+
},
|
2454
|
+
{
|
2455
|
+
"kind": "Content",
|
2456
|
+
"text": " | null;\n readonly attributeStyleMap: "
|
2457
|
+
},
|
2458
|
+
{
|
2459
|
+
"kind": "Reference",
|
2460
|
+
"text": "StylePropertyMap",
|
2461
|
+
"canonicalReference": "!StylePropertyMap:interface"
|
2462
|
+
},
|
2463
|
+
{
|
2464
|
+
"kind": "Content",
|
2465
|
+
"text": ";\n get style(): "
|
1997
2466
|
},
|
1998
2467
|
{
|
1999
2468
|
"kind": "Reference",
|
2000
|
-
"text": "
|
2001
|
-
"canonicalReference": "!
|
2469
|
+
"text": "CSSStyleDeclaration",
|
2470
|
+
"canonicalReference": "!CSSStyleDeclaration:interface"
|
2002
2471
|
},
|
2003
2472
|
{
|
2004
2473
|
"kind": "Content",
|
2005
|
-
"text": "
|
2474
|
+
"text": ";\n set style(cssText: string);\n contentEditable: string;\n enterKeyHint: string;\n inputMode: string;\n readonly isContentEditable: boolean;\n onabort: ((this: "
|
2006
2475
|
},
|
2007
2476
|
{
|
2008
2477
|
"kind": "Reference",
|
2009
|
-
"text": "
|
2010
|
-
"canonicalReference": "!
|
2478
|
+
"text": "GlobalEventHandlers",
|
2479
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
2011
2480
|
},
|
2012
2481
|
{
|
2013
2482
|
"kind": "Content",
|
2014
|
-
"text": "
|
2483
|
+
"text": ", ev: "
|
2015
2484
|
},
|
2016
2485
|
{
|
2017
2486
|
"kind": "Reference",
|
2018
|
-
"text": "
|
2019
|
-
"canonicalReference": "!
|
2487
|
+
"text": "UIEvent",
|
2488
|
+
"canonicalReference": "!UIEvent:interface"
|
2020
2489
|
},
|
2021
2490
|
{
|
2022
2491
|
"kind": "Content",
|
2023
|
-
"text": ";\n
|
2492
|
+
"text": ") => any) | null;\n onanimationcancel: ((this: "
|
2024
2493
|
},
|
2025
2494
|
{
|
2026
2495
|
"kind": "Reference",
|
2027
|
-
"text": "
|
2028
|
-
"canonicalReference": "!
|
2496
|
+
"text": "GlobalEventHandlers",
|
2497
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
2029
2498
|
},
|
2030
2499
|
{
|
2031
2500
|
"kind": "Content",
|
@@ -2033,17 +2502,17 @@
|
|
2033
2502
|
},
|
2034
2503
|
{
|
2035
2504
|
"kind": "Reference",
|
2036
|
-
"text": "
|
2037
|
-
"canonicalReference": "!
|
2505
|
+
"text": "AnimationEvent",
|
2506
|
+
"canonicalReference": "!AnimationEvent:interface"
|
2038
2507
|
},
|
2039
2508
|
{
|
2040
2509
|
"kind": "Content",
|
2041
|
-
"text": ") => any;\n
|
2510
|
+
"text": ") => any) | null;\n onanimationend: ((this: "
|
2042
2511
|
},
|
2043
2512
|
{
|
2044
2513
|
"kind": "Reference",
|
2045
|
-
"text": "
|
2046
|
-
"canonicalReference": "!
|
2514
|
+
"text": "GlobalEventHandlers",
|
2515
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
2047
2516
|
},
|
2048
2517
|
{
|
2049
2518
|
"kind": "Content",
|
@@ -2051,17 +2520,17 @@
|
|
2051
2520
|
},
|
2052
2521
|
{
|
2053
2522
|
"kind": "Reference",
|
2054
|
-
"text": "
|
2055
|
-
"canonicalReference": "!
|
2523
|
+
"text": "AnimationEvent",
|
2524
|
+
"canonicalReference": "!AnimationEvent:interface"
|
2056
2525
|
},
|
2057
2526
|
{
|
2058
2527
|
"kind": "Content",
|
2059
|
-
"text": ") => any;\n
|
2528
|
+
"text": ") => any) | null;\n onanimationiteration: ((this: "
|
2060
2529
|
},
|
2061
2530
|
{
|
2062
2531
|
"kind": "Reference",
|
2063
|
-
"text": "
|
2064
|
-
"canonicalReference": "!
|
2532
|
+
"text": "GlobalEventHandlers",
|
2533
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
2065
2534
|
},
|
2066
2535
|
{
|
2067
2536
|
"kind": "Content",
|
@@ -2069,21 +2538,30 @@
|
|
2069
2538
|
},
|
2070
2539
|
{
|
2071
2540
|
"kind": "Reference",
|
2072
|
-
"text": "
|
2073
|
-
"canonicalReference": "!
|
2541
|
+
"text": "AnimationEvent",
|
2542
|
+
"canonicalReference": "!AnimationEvent:interface"
|
2074
2543
|
},
|
2075
2544
|
{
|
2076
2545
|
"kind": "Content",
|
2077
|
-
"text": ") => any;\n
|
2546
|
+
"text": ") => any) | null;\n onanimationstart: ((this: "
|
2078
2547
|
},
|
2079
2548
|
{
|
2080
2549
|
"kind": "Reference",
|
2081
|
-
"text": "
|
2082
|
-
"canonicalReference": "!
|
2550
|
+
"text": "GlobalEventHandlers",
|
2551
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
2552
|
+
},
|
2553
|
+
{
|
2554
|
+
"kind": "Content",
|
2555
|
+
"text": ", ev: "
|
2556
|
+
},
|
2557
|
+
{
|
2558
|
+
"kind": "Reference",
|
2559
|
+
"text": "AnimationEvent",
|
2560
|
+
"canonicalReference": "!AnimationEvent:interface"
|
2083
2561
|
},
|
2084
2562
|
{
|
2085
2563
|
"kind": "Content",
|
2086
|
-
"text": "
|
2564
|
+
"text": ") => any) | null;\n onauxclick: ((this: "
|
2087
2565
|
},
|
2088
2566
|
{
|
2089
2567
|
"kind": "Reference",
|
@@ -2096,12 +2574,12 @@
|
|
2096
2574
|
},
|
2097
2575
|
{
|
2098
2576
|
"kind": "Reference",
|
2099
|
-
"text": "
|
2100
|
-
"canonicalReference": "!
|
2577
|
+
"text": "PointerEvent",
|
2578
|
+
"canonicalReference": "!PointerEvent:interface"
|
2101
2579
|
},
|
2102
2580
|
{
|
2103
2581
|
"kind": "Content",
|
2104
|
-
"text": ") => any;\n
|
2582
|
+
"text": ") => any) | null;\n onbeforeinput: ((this: "
|
2105
2583
|
},
|
2106
2584
|
{
|
2107
2585
|
"kind": "Reference",
|
@@ -2114,12 +2592,12 @@
|
|
2114
2592
|
},
|
2115
2593
|
{
|
2116
2594
|
"kind": "Reference",
|
2117
|
-
"text": "
|
2118
|
-
"canonicalReference": "!
|
2595
|
+
"text": "InputEvent",
|
2596
|
+
"canonicalReference": "!InputEvent:interface"
|
2119
2597
|
},
|
2120
2598
|
{
|
2121
2599
|
"kind": "Content",
|
2122
|
-
"text": ") => any;\n
|
2600
|
+
"text": ") => any) | null;\n onbeforematch: ((this: "
|
2123
2601
|
},
|
2124
2602
|
{
|
2125
2603
|
"kind": "Reference",
|
@@ -2132,12 +2610,12 @@
|
|
2132
2610
|
},
|
2133
2611
|
{
|
2134
2612
|
"kind": "Reference",
|
2135
|
-
"text": "
|
2136
|
-
"canonicalReference": "!
|
2613
|
+
"text": "Event",
|
2614
|
+
"canonicalReference": "!Event:interface"
|
2137
2615
|
},
|
2138
2616
|
{
|
2139
2617
|
"kind": "Content",
|
2140
|
-
"text": ") => any;\n
|
2618
|
+
"text": ") => any) | null;\n onbeforetoggle: ((this: "
|
2141
2619
|
},
|
2142
2620
|
{
|
2143
2621
|
"kind": "Reference",
|
@@ -2150,12 +2628,12 @@
|
|
2150
2628
|
},
|
2151
2629
|
{
|
2152
2630
|
"kind": "Reference",
|
2153
|
-
"text": "
|
2154
|
-
"canonicalReference": "!
|
2631
|
+
"text": "ToggleEvent",
|
2632
|
+
"canonicalReference": "!ToggleEvent:interface"
|
2155
2633
|
},
|
2156
2634
|
{
|
2157
2635
|
"kind": "Content",
|
2158
|
-
"text": ") => any;\n
|
2636
|
+
"text": ") => any) | null;\n onblur: ((this: "
|
2159
2637
|
},
|
2160
2638
|
{
|
2161
2639
|
"kind": "Reference",
|
@@ -2168,12 +2646,12 @@
|
|
2168
2646
|
},
|
2169
2647
|
{
|
2170
2648
|
"kind": "Reference",
|
2171
|
-
"text": "
|
2172
|
-
"canonicalReference": "!
|
2649
|
+
"text": "FocusEvent",
|
2650
|
+
"canonicalReference": "!FocusEvent:interface"
|
2173
2651
|
},
|
2174
2652
|
{
|
2175
2653
|
"kind": "Content",
|
2176
|
-
"text": ") => any;\n
|
2654
|
+
"text": ") => any) | null;\n oncancel: ((this: "
|
2177
2655
|
},
|
2178
2656
|
{
|
2179
2657
|
"kind": "Reference",
|
@@ -2186,12 +2664,12 @@
|
|
2186
2664
|
},
|
2187
2665
|
{
|
2188
2666
|
"kind": "Reference",
|
2189
|
-
"text": "
|
2190
|
-
"canonicalReference": "!
|
2667
|
+
"text": "Event",
|
2668
|
+
"canonicalReference": "!Event:interface"
|
2191
2669
|
},
|
2192
2670
|
{
|
2193
2671
|
"kind": "Content",
|
2194
|
-
"text": ") => any;\n
|
2672
|
+
"text": ") => any) | null;\n oncanplay: ((this: "
|
2195
2673
|
},
|
2196
2674
|
{
|
2197
2675
|
"kind": "Reference",
|
@@ -2204,12 +2682,12 @@
|
|
2204
2682
|
},
|
2205
2683
|
{
|
2206
2684
|
"kind": "Reference",
|
2207
|
-
"text": "
|
2208
|
-
"canonicalReference": "!
|
2685
|
+
"text": "Event",
|
2686
|
+
"canonicalReference": "!Event:interface"
|
2209
2687
|
},
|
2210
2688
|
{
|
2211
2689
|
"kind": "Content",
|
2212
|
-
"text": ") => any;\n
|
2690
|
+
"text": ") => any) | null;\n oncanplaythrough: ((this: "
|
2213
2691
|
},
|
2214
2692
|
{
|
2215
2693
|
"kind": "Reference",
|
@@ -2222,12 +2700,12 @@
|
|
2222
2700
|
},
|
2223
2701
|
{
|
2224
2702
|
"kind": "Reference",
|
2225
|
-
"text": "
|
2226
|
-
"canonicalReference": "!
|
2703
|
+
"text": "Event",
|
2704
|
+
"canonicalReference": "!Event:interface"
|
2227
2705
|
},
|
2228
2706
|
{
|
2229
2707
|
"kind": "Content",
|
2230
|
-
"text": ") => any;\n
|
2708
|
+
"text": ") => any) | null;\n onchange: ((this: "
|
2231
2709
|
},
|
2232
2710
|
{
|
2233
2711
|
"kind": "Reference",
|
@@ -2245,7 +2723,7 @@
|
|
2245
2723
|
},
|
2246
2724
|
{
|
2247
2725
|
"kind": "Content",
|
2248
|
-
"text": ") => any;\n
|
2726
|
+
"text": ") => any) | null;\n onclick: ((this: "
|
2249
2727
|
},
|
2250
2728
|
{
|
2251
2729
|
"kind": "Reference",
|
@@ -2258,12 +2736,12 @@
|
|
2258
2736
|
},
|
2259
2737
|
{
|
2260
2738
|
"kind": "Reference",
|
2261
|
-
"text": "
|
2262
|
-
"canonicalReference": "!
|
2739
|
+
"text": "PointerEvent",
|
2740
|
+
"canonicalReference": "!PointerEvent:interface"
|
2263
2741
|
},
|
2264
2742
|
{
|
2265
2743
|
"kind": "Content",
|
2266
|
-
"text": ") => any;\n
|
2744
|
+
"text": ") => any) | null;\n onclose: ((this: "
|
2267
2745
|
},
|
2268
2746
|
{
|
2269
2747
|
"kind": "Reference",
|
@@ -2281,7 +2759,7 @@
|
|
2281
2759
|
},
|
2282
2760
|
{
|
2283
2761
|
"kind": "Content",
|
2284
|
-
"text": ") => any;\n
|
2762
|
+
"text": ") => any) | null;\n oncontextlost: ((this: "
|
2285
2763
|
},
|
2286
2764
|
{
|
2287
2765
|
"kind": "Reference",
|
@@ -2299,7 +2777,7 @@
|
|
2299
2777
|
},
|
2300
2778
|
{
|
2301
2779
|
"kind": "Content",
|
2302
|
-
"text": ") => any;\n
|
2780
|
+
"text": ") => any) | null;\n oncontextmenu: ((this: "
|
2303
2781
|
},
|
2304
2782
|
{
|
2305
2783
|
"kind": "Reference",
|
@@ -2312,12 +2790,12 @@
|
|
2312
2790
|
},
|
2313
2791
|
{
|
2314
2792
|
"kind": "Reference",
|
2315
|
-
"text": "
|
2316
|
-
"canonicalReference": "!
|
2793
|
+
"text": "PointerEvent",
|
2794
|
+
"canonicalReference": "!PointerEvent:interface"
|
2317
2795
|
},
|
2318
2796
|
{
|
2319
2797
|
"kind": "Content",
|
2320
|
-
"text": ") => any;\n
|
2798
|
+
"text": ") => any) | null;\n oncontextrestored: ((this: "
|
2321
2799
|
},
|
2322
2800
|
{
|
2323
2801
|
"kind": "Reference",
|
@@ -2335,7 +2813,7 @@
|
|
2335
2813
|
},
|
2336
2814
|
{
|
2337
2815
|
"kind": "Content",
|
2338
|
-
"text": ") => any;\n
|
2816
|
+
"text": ") => any) | null;\n oncopy: ((this: "
|
2339
2817
|
},
|
2340
2818
|
{
|
2341
2819
|
"kind": "Reference",
|
@@ -2348,12 +2826,12 @@
|
|
2348
2826
|
},
|
2349
2827
|
{
|
2350
2828
|
"kind": "Reference",
|
2351
|
-
"text": "
|
2352
|
-
"canonicalReference": "!
|
2829
|
+
"text": "ClipboardEvent",
|
2830
|
+
"canonicalReference": "!ClipboardEvent:interface"
|
2353
2831
|
},
|
2354
2832
|
{
|
2355
2833
|
"kind": "Content",
|
2356
|
-
"text": ") => any;\n oncuechange: (this: "
|
2834
|
+
"text": ") => any) | null;\n oncuechange: ((this: "
|
2357
2835
|
},
|
2358
2836
|
{
|
2359
2837
|
"kind": "Reference",
|
@@ -2371,7 +2849,25 @@
|
|
2371
2849
|
},
|
2372
2850
|
{
|
2373
2851
|
"kind": "Content",
|
2374
|
-
"text": ") => any;\n
|
2852
|
+
"text": ") => any) | null;\n oncut: ((this: "
|
2853
|
+
},
|
2854
|
+
{
|
2855
|
+
"kind": "Reference",
|
2856
|
+
"text": "GlobalEventHandlers",
|
2857
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
2858
|
+
},
|
2859
|
+
{
|
2860
|
+
"kind": "Content",
|
2861
|
+
"text": ", ev: "
|
2862
|
+
},
|
2863
|
+
{
|
2864
|
+
"kind": "Reference",
|
2865
|
+
"text": "ClipboardEvent",
|
2866
|
+
"canonicalReference": "!ClipboardEvent:interface"
|
2867
|
+
},
|
2868
|
+
{
|
2869
|
+
"kind": "Content",
|
2870
|
+
"text": ") => any) | null;\n ondblclick: ((this: "
|
2375
2871
|
},
|
2376
2872
|
{
|
2377
2873
|
"kind": "Reference",
|
@@ -2389,7 +2885,7 @@
|
|
2389
2885
|
},
|
2390
2886
|
{
|
2391
2887
|
"kind": "Content",
|
2392
|
-
"text": ") => any;\n ondrag: (this: "
|
2888
|
+
"text": ") => any) | null;\n ondrag: ((this: "
|
2393
2889
|
},
|
2394
2890
|
{
|
2395
2891
|
"kind": "Reference",
|
@@ -2407,7 +2903,7 @@
|
|
2407
2903
|
},
|
2408
2904
|
{
|
2409
2905
|
"kind": "Content",
|
2410
|
-
"text": ") => any;\n ondragend: (this: "
|
2906
|
+
"text": ") => any) | null;\n ondragend: ((this: "
|
2411
2907
|
},
|
2412
2908
|
{
|
2413
2909
|
"kind": "Reference",
|
@@ -2425,7 +2921,7 @@
|
|
2425
2921
|
},
|
2426
2922
|
{
|
2427
2923
|
"kind": "Content",
|
2428
|
-
"text": ") => any;\n ondragenter: (this: "
|
2924
|
+
"text": ") => any) | null;\n ondragenter: ((this: "
|
2429
2925
|
},
|
2430
2926
|
{
|
2431
2927
|
"kind": "Reference",
|
@@ -2443,7 +2939,7 @@
|
|
2443
2939
|
},
|
2444
2940
|
{
|
2445
2941
|
"kind": "Content",
|
2446
|
-
"text": ") => any;\n ondragleave: (this: "
|
2942
|
+
"text": ") => any) | null;\n ondragleave: ((this: "
|
2447
2943
|
},
|
2448
2944
|
{
|
2449
2945
|
"kind": "Reference",
|
@@ -2461,7 +2957,7 @@
|
|
2461
2957
|
},
|
2462
2958
|
{
|
2463
2959
|
"kind": "Content",
|
2464
|
-
"text": ") => any;\n ondragover: (this: "
|
2960
|
+
"text": ") => any) | null;\n ondragover: ((this: "
|
2465
2961
|
},
|
2466
2962
|
{
|
2467
2963
|
"kind": "Reference",
|
@@ -2479,7 +2975,7 @@
|
|
2479
2975
|
},
|
2480
2976
|
{
|
2481
2977
|
"kind": "Content",
|
2482
|
-
"text": ") => any;\n ondragstart: (this: "
|
2978
|
+
"text": ") => any) | null;\n ondragstart: ((this: "
|
2483
2979
|
},
|
2484
2980
|
{
|
2485
2981
|
"kind": "Reference",
|
@@ -2497,7 +2993,7 @@
|
|
2497
2993
|
},
|
2498
2994
|
{
|
2499
2995
|
"kind": "Content",
|
2500
|
-
"text": ") => any;\n ondrop: (this: "
|
2996
|
+
"text": ") => any) | null;\n ondrop: ((this: "
|
2501
2997
|
},
|
2502
2998
|
{
|
2503
2999
|
"kind": "Reference",
|
@@ -2515,7 +3011,7 @@
|
|
2515
3011
|
},
|
2516
3012
|
{
|
2517
3013
|
"kind": "Content",
|
2518
|
-
"text": ") => any;\n ondurationchange: (this: "
|
3014
|
+
"text": ") => any) | null;\n ondurationchange: ((this: "
|
2519
3015
|
},
|
2520
3016
|
{
|
2521
3017
|
"kind": "Reference",
|
@@ -2533,7 +3029,7 @@
|
|
2533
3029
|
},
|
2534
3030
|
{
|
2535
3031
|
"kind": "Content",
|
2536
|
-
"text": ") => any;\n onemptied: (this: "
|
3032
|
+
"text": ") => any) | null;\n onemptied: ((this: "
|
2537
3033
|
},
|
2538
3034
|
{
|
2539
3035
|
"kind": "Reference",
|
@@ -2551,7 +3047,7 @@
|
|
2551
3047
|
},
|
2552
3048
|
{
|
2553
3049
|
"kind": "Content",
|
2554
|
-
"text": ") => any;\n onended: (this: "
|
3050
|
+
"text": ") => any) | null;\n onended: ((this: "
|
2555
3051
|
},
|
2556
3052
|
{
|
2557
3053
|
"kind": "Reference",
|
@@ -2569,16 +3065,16 @@
|
|
2569
3065
|
},
|
2570
3066
|
{
|
2571
3067
|
"kind": "Content",
|
2572
|
-
"text": ") => any;\n onerror: "
|
3068
|
+
"text": ") => any) | null;\n onerror: "
|
2573
3069
|
},
|
2574
3070
|
{
|
2575
3071
|
"kind": "Reference",
|
2576
|
-
"text": "
|
2577
|
-
"canonicalReference": "!
|
3072
|
+
"text": "OnErrorEventHandler",
|
3073
|
+
"canonicalReference": "!OnErrorEventHandler:type"
|
2578
3074
|
},
|
2579
3075
|
{
|
2580
3076
|
"kind": "Content",
|
2581
|
-
"text": ";\n onfocus: (this: "
|
3077
|
+
"text": ";\n onfocus: ((this: "
|
2582
3078
|
},
|
2583
3079
|
{
|
2584
3080
|
"kind": "Reference",
|
@@ -2596,7 +3092,7 @@
|
|
2596
3092
|
},
|
2597
3093
|
{
|
2598
3094
|
"kind": "Content",
|
2599
|
-
"text": ") => any;\n onformdata: (this: "
|
3095
|
+
"text": ") => any) | null;\n onformdata: ((this: "
|
2600
3096
|
},
|
2601
3097
|
{
|
2602
3098
|
"kind": "Reference",
|
@@ -2614,7 +3110,7 @@
|
|
2614
3110
|
},
|
2615
3111
|
{
|
2616
3112
|
"kind": "Content",
|
2617
|
-
"text": ") => any;\n ongotpointercapture: (this: "
|
3113
|
+
"text": ") => any) | null;\n ongotpointercapture: ((this: "
|
2618
3114
|
},
|
2619
3115
|
{
|
2620
3116
|
"kind": "Reference",
|
@@ -2632,7 +3128,7 @@
|
|
2632
3128
|
},
|
2633
3129
|
{
|
2634
3130
|
"kind": "Content",
|
2635
|
-
"text": ") => any;\n oninput: (this: "
|
3131
|
+
"text": ") => any) | null;\n oninput: ((this: "
|
2636
3132
|
},
|
2637
3133
|
{
|
2638
3134
|
"kind": "Reference",
|
@@ -2650,7 +3146,7 @@
|
|
2650
3146
|
},
|
2651
3147
|
{
|
2652
3148
|
"kind": "Content",
|
2653
|
-
"text": ") => any;\n oninvalid: (this: "
|
3149
|
+
"text": ") => any) | null;\n oninvalid: ((this: "
|
2654
3150
|
},
|
2655
3151
|
{
|
2656
3152
|
"kind": "Reference",
|
@@ -2668,7 +3164,7 @@
|
|
2668
3164
|
},
|
2669
3165
|
{
|
2670
3166
|
"kind": "Content",
|
2671
|
-
"text": ") => any;\n onkeydown: (this: "
|
3167
|
+
"text": ") => any) | null;\n onkeydown: ((this: "
|
2672
3168
|
},
|
2673
3169
|
{
|
2674
3170
|
"kind": "Reference",
|
@@ -2686,7 +3182,7 @@
|
|
2686
3182
|
},
|
2687
3183
|
{
|
2688
3184
|
"kind": "Content",
|
2689
|
-
"text": ") => any;\n onkeypress: (this: "
|
3185
|
+
"text": ") => any) | null;\n onkeypress: ((this: "
|
2690
3186
|
},
|
2691
3187
|
{
|
2692
3188
|
"kind": "Reference",
|
@@ -2704,7 +3200,7 @@
|
|
2704
3200
|
},
|
2705
3201
|
{
|
2706
3202
|
"kind": "Content",
|
2707
|
-
"text": ") => any;\n onkeyup: (this: "
|
3203
|
+
"text": ") => any) | null;\n onkeyup: ((this: "
|
2708
3204
|
},
|
2709
3205
|
{
|
2710
3206
|
"kind": "Reference",
|
@@ -2722,7 +3218,7 @@
|
|
2722
3218
|
},
|
2723
3219
|
{
|
2724
3220
|
"kind": "Content",
|
2725
|
-
"text": ") => any;\n onload: (this: "
|
3221
|
+
"text": ") => any) | null;\n onload: ((this: "
|
2726
3222
|
},
|
2727
3223
|
{
|
2728
3224
|
"kind": "Reference",
|
@@ -2740,7 +3236,7 @@
|
|
2740
3236
|
},
|
2741
3237
|
{
|
2742
3238
|
"kind": "Content",
|
2743
|
-
"text": ") => any;\n onloadeddata: (this: "
|
3239
|
+
"text": ") => any) | null;\n onloadeddata: ((this: "
|
2744
3240
|
},
|
2745
3241
|
{
|
2746
3242
|
"kind": "Reference",
|
@@ -2758,7 +3254,7 @@
|
|
2758
3254
|
},
|
2759
3255
|
{
|
2760
3256
|
"kind": "Content",
|
2761
|
-
"text": ") => any;\n onloadedmetadata: (this: "
|
3257
|
+
"text": ") => any) | null;\n onloadedmetadata: ((this: "
|
2762
3258
|
},
|
2763
3259
|
{
|
2764
3260
|
"kind": "Reference",
|
@@ -2776,7 +3272,7 @@
|
|
2776
3272
|
},
|
2777
3273
|
{
|
2778
3274
|
"kind": "Content",
|
2779
|
-
"text": ") => any;\n onloadstart: (this: "
|
3275
|
+
"text": ") => any) | null;\n onloadstart: ((this: "
|
2780
3276
|
},
|
2781
3277
|
{
|
2782
3278
|
"kind": "Reference",
|
@@ -2794,7 +3290,7 @@
|
|
2794
3290
|
},
|
2795
3291
|
{
|
2796
3292
|
"kind": "Content",
|
2797
|
-
"text": ") => any;\n onlostpointercapture: (this: "
|
3293
|
+
"text": ") => any) | null;\n onlostpointercapture: ((this: "
|
2798
3294
|
},
|
2799
3295
|
{
|
2800
3296
|
"kind": "Reference",
|
@@ -2812,7 +3308,7 @@
|
|
2812
3308
|
},
|
2813
3309
|
{
|
2814
3310
|
"kind": "Content",
|
2815
|
-
"text": ") => any;\n onmousedown: (this: "
|
3311
|
+
"text": ") => any) | null;\n onmousedown: ((this: "
|
2816
3312
|
},
|
2817
3313
|
{
|
2818
3314
|
"kind": "Reference",
|
@@ -2830,7 +3326,7 @@
|
|
2830
3326
|
},
|
2831
3327
|
{
|
2832
3328
|
"kind": "Content",
|
2833
|
-
"text": ") => any;\n onmouseenter: (this: "
|
3329
|
+
"text": ") => any) | null;\n onmouseenter: ((this: "
|
2834
3330
|
},
|
2835
3331
|
{
|
2836
3332
|
"kind": "Reference",
|
@@ -2848,7 +3344,7 @@
|
|
2848
3344
|
},
|
2849
3345
|
{
|
2850
3346
|
"kind": "Content",
|
2851
|
-
"text": ") => any;\n onmouseleave: (this: "
|
3347
|
+
"text": ") => any) | null;\n onmouseleave: ((this: "
|
2852
3348
|
},
|
2853
3349
|
{
|
2854
3350
|
"kind": "Reference",
|
@@ -2866,7 +3362,7 @@
|
|
2866
3362
|
},
|
2867
3363
|
{
|
2868
3364
|
"kind": "Content",
|
2869
|
-
"text": ") => any;\n onmousemove: (this: "
|
3365
|
+
"text": ") => any) | null;\n onmousemove: ((this: "
|
2870
3366
|
},
|
2871
3367
|
{
|
2872
3368
|
"kind": "Reference",
|
@@ -2884,7 +3380,7 @@
|
|
2884
3380
|
},
|
2885
3381
|
{
|
2886
3382
|
"kind": "Content",
|
2887
|
-
"text": ") => any;\n onmouseout: (this: "
|
3383
|
+
"text": ") => any) | null;\n onmouseout: ((this: "
|
2888
3384
|
},
|
2889
3385
|
{
|
2890
3386
|
"kind": "Reference",
|
@@ -2902,7 +3398,7 @@
|
|
2902
3398
|
},
|
2903
3399
|
{
|
2904
3400
|
"kind": "Content",
|
2905
|
-
"text": ") => any;\n onmouseover: (this: "
|
3401
|
+
"text": ") => any) | null;\n onmouseover: ((this: "
|
2906
3402
|
},
|
2907
3403
|
{
|
2908
3404
|
"kind": "Reference",
|
@@ -2920,7 +3416,7 @@
|
|
2920
3416
|
},
|
2921
3417
|
{
|
2922
3418
|
"kind": "Content",
|
2923
|
-
"text": ") => any;\n onmouseup: (this: "
|
3419
|
+
"text": ") => any) | null;\n onmouseup: ((this: "
|
2924
3420
|
},
|
2925
3421
|
{
|
2926
3422
|
"kind": "Reference",
|
@@ -2938,7 +3434,25 @@
|
|
2938
3434
|
},
|
2939
3435
|
{
|
2940
3436
|
"kind": "Content",
|
2941
|
-
"text": ") => any;\n
|
3437
|
+
"text": ") => any) | null;\n onpaste: ((this: "
|
3438
|
+
},
|
3439
|
+
{
|
3440
|
+
"kind": "Reference",
|
3441
|
+
"text": "GlobalEventHandlers",
|
3442
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
3443
|
+
},
|
3444
|
+
{
|
3445
|
+
"kind": "Content",
|
3446
|
+
"text": ", ev: "
|
3447
|
+
},
|
3448
|
+
{
|
3449
|
+
"kind": "Reference",
|
3450
|
+
"text": "ClipboardEvent",
|
3451
|
+
"canonicalReference": "!ClipboardEvent:interface"
|
3452
|
+
},
|
3453
|
+
{
|
3454
|
+
"kind": "Content",
|
3455
|
+
"text": ") => any) | null;\n onpause: ((this: "
|
2942
3456
|
},
|
2943
3457
|
{
|
2944
3458
|
"kind": "Reference",
|
@@ -2956,7 +3470,7 @@
|
|
2956
3470
|
},
|
2957
3471
|
{
|
2958
3472
|
"kind": "Content",
|
2959
|
-
"text": ") => any;\n onplay: (this: "
|
3473
|
+
"text": ") => any) | null;\n onplay: ((this: "
|
2960
3474
|
},
|
2961
3475
|
{
|
2962
3476
|
"kind": "Reference",
|
@@ -2974,7 +3488,7 @@
|
|
2974
3488
|
},
|
2975
3489
|
{
|
2976
3490
|
"kind": "Content",
|
2977
|
-
"text": ") => any;\n onplaying: (this: "
|
3491
|
+
"text": ") => any) | null;\n onplaying: ((this: "
|
2978
3492
|
},
|
2979
3493
|
{
|
2980
3494
|
"kind": "Reference",
|
@@ -2992,7 +3506,7 @@
|
|
2992
3506
|
},
|
2993
3507
|
{
|
2994
3508
|
"kind": "Content",
|
2995
|
-
"text": ") => any;\n onpointercancel: (this: "
|
3509
|
+
"text": ") => any) | null;\n onpointercancel: ((this: "
|
2996
3510
|
},
|
2997
3511
|
{
|
2998
3512
|
"kind": "Reference",
|
@@ -3010,7 +3524,7 @@
|
|
3010
3524
|
},
|
3011
3525
|
{
|
3012
3526
|
"kind": "Content",
|
3013
|
-
"text": ") => any;\n onpointerdown: (this: "
|
3527
|
+
"text": ") => any) | null;\n onpointerdown: ((this: "
|
3014
3528
|
},
|
3015
3529
|
{
|
3016
3530
|
"kind": "Reference",
|
@@ -3028,7 +3542,7 @@
|
|
3028
3542
|
},
|
3029
3543
|
{
|
3030
3544
|
"kind": "Content",
|
3031
|
-
"text": ") => any;\n onpointerenter: (this: "
|
3545
|
+
"text": ") => any) | null;\n onpointerenter: ((this: "
|
3032
3546
|
},
|
3033
3547
|
{
|
3034
3548
|
"kind": "Reference",
|
@@ -3046,7 +3560,7 @@
|
|
3046
3560
|
},
|
3047
3561
|
{
|
3048
3562
|
"kind": "Content",
|
3049
|
-
"text": ") => any;\n onpointerleave: (this: "
|
3563
|
+
"text": ") => any) | null;\n onpointerleave: ((this: "
|
3050
3564
|
},
|
3051
3565
|
{
|
3052
3566
|
"kind": "Reference",
|
@@ -3064,7 +3578,7 @@
|
|
3064
3578
|
},
|
3065
3579
|
{
|
3066
3580
|
"kind": "Content",
|
3067
|
-
"text": ") => any;\n onpointermove: (this: "
|
3581
|
+
"text": ") => any) | null;\n onpointermove: ((this: "
|
3068
3582
|
},
|
3069
3583
|
{
|
3070
3584
|
"kind": "Reference",
|
@@ -3082,7 +3596,7 @@
|
|
3082
3596
|
},
|
3083
3597
|
{
|
3084
3598
|
"kind": "Content",
|
3085
|
-
"text": ") => any;\n onpointerout: (this: "
|
3599
|
+
"text": ") => any) | null;\n onpointerout: ((this: "
|
3086
3600
|
},
|
3087
3601
|
{
|
3088
3602
|
"kind": "Reference",
|
@@ -3100,7 +3614,7 @@
|
|
3100
3614
|
},
|
3101
3615
|
{
|
3102
3616
|
"kind": "Content",
|
3103
|
-
"text": ") => any;\n onpointerover: (this: "
|
3617
|
+
"text": ") => any) | null;\n onpointerover: ((this: "
|
3104
3618
|
},
|
3105
3619
|
{
|
3106
3620
|
"kind": "Reference",
|
@@ -3118,7 +3632,7 @@
|
|
3118
3632
|
},
|
3119
3633
|
{
|
3120
3634
|
"kind": "Content",
|
3121
|
-
"text": ") => any;\n
|
3635
|
+
"text": ") => any) | null;\n onpointerrawupdate: ((this: "
|
3122
3636
|
},
|
3123
3637
|
{
|
3124
3638
|
"kind": "Reference",
|
@@ -3131,12 +3645,12 @@
|
|
3131
3645
|
},
|
3132
3646
|
{
|
3133
3647
|
"kind": "Reference",
|
3134
|
-
"text": "
|
3135
|
-
"canonicalReference": "!
|
3648
|
+
"text": "Event",
|
3649
|
+
"canonicalReference": "!Event:interface"
|
3136
3650
|
},
|
3137
3651
|
{
|
3138
3652
|
"kind": "Content",
|
3139
|
-
"text": ") => any;\n
|
3653
|
+
"text": ") => any) | null;\n onpointerup: ((this: "
|
3140
3654
|
},
|
3141
3655
|
{
|
3142
3656
|
"kind": "Reference",
|
@@ -3149,21 +3663,30 @@
|
|
3149
3663
|
},
|
3150
3664
|
{
|
3151
3665
|
"kind": "Reference",
|
3152
|
-
"text": "
|
3153
|
-
"canonicalReference": "!
|
3666
|
+
"text": "PointerEvent",
|
3667
|
+
"canonicalReference": "!PointerEvent:interface"
|
3154
3668
|
},
|
3155
3669
|
{
|
3156
3670
|
"kind": "Content",
|
3157
|
-
"text": "
|
3671
|
+
"text": ") => any) | null;\n onprogress: ((this: "
|
3672
|
+
},
|
3673
|
+
{
|
3674
|
+
"kind": "Reference",
|
3675
|
+
"text": "GlobalEventHandlers",
|
3676
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
3677
|
+
},
|
3678
|
+
{
|
3679
|
+
"kind": "Content",
|
3680
|
+
"text": ", ev: "
|
3158
3681
|
},
|
3159
3682
|
{
|
3160
3683
|
"kind": "Reference",
|
3161
|
-
"text": "
|
3162
|
-
"canonicalReference": "!
|
3684
|
+
"text": "ProgressEvent",
|
3685
|
+
"canonicalReference": "!ProgressEvent:interface"
|
3163
3686
|
},
|
3164
3687
|
{
|
3165
3688
|
"kind": "Content",
|
3166
|
-
"text": "
|
3689
|
+
"text": ") => any) | null;\n onratechange: ((this: "
|
3167
3690
|
},
|
3168
3691
|
{
|
3169
3692
|
"kind": "Reference",
|
@@ -3181,7 +3704,7 @@
|
|
3181
3704
|
},
|
3182
3705
|
{
|
3183
3706
|
"kind": "Content",
|
3184
|
-
"text": ") => any;\n onreset: (this: "
|
3707
|
+
"text": ") => any) | null;\n onreset: ((this: "
|
3185
3708
|
},
|
3186
3709
|
{
|
3187
3710
|
"kind": "Reference",
|
@@ -3199,7 +3722,7 @@
|
|
3199
3722
|
},
|
3200
3723
|
{
|
3201
3724
|
"kind": "Content",
|
3202
|
-
"text": ") => any;\n onresize: (this: "
|
3725
|
+
"text": ") => any) | null;\n onresize: ((this: "
|
3203
3726
|
},
|
3204
3727
|
{
|
3205
3728
|
"kind": "Reference",
|
@@ -3217,7 +3740,25 @@
|
|
3217
3740
|
},
|
3218
3741
|
{
|
3219
3742
|
"kind": "Content",
|
3220
|
-
"text": ") => any;\n onscroll: (this: "
|
3743
|
+
"text": ") => any) | null;\n onscroll: ((this: "
|
3744
|
+
},
|
3745
|
+
{
|
3746
|
+
"kind": "Reference",
|
3747
|
+
"text": "GlobalEventHandlers",
|
3748
|
+
"canonicalReference": "!GlobalEventHandlers:interface"
|
3749
|
+
},
|
3750
|
+
{
|
3751
|
+
"kind": "Content",
|
3752
|
+
"text": ", ev: "
|
3753
|
+
},
|
3754
|
+
{
|
3755
|
+
"kind": "Reference",
|
3756
|
+
"text": "Event",
|
3757
|
+
"canonicalReference": "!Event:interface"
|
3758
|
+
},
|
3759
|
+
{
|
3760
|
+
"kind": "Content",
|
3761
|
+
"text": ") => any) | null;\n onscrollend: ((this: "
|
3221
3762
|
},
|
3222
3763
|
{
|
3223
3764
|
"kind": "Reference",
|
@@ -3235,7 +3776,7 @@
|
|
3235
3776
|
},
|
3236
3777
|
{
|
3237
3778
|
"kind": "Content",
|
3238
|
-
"text": ") => any;\n onsecuritypolicyviolation: (this: "
|
3779
|
+
"text": ") => any) | null;\n onsecuritypolicyviolation: ((this: "
|
3239
3780
|
},
|
3240
3781
|
{
|
3241
3782
|
"kind": "Reference",
|
@@ -3253,7 +3794,7 @@
|
|
3253
3794
|
},
|
3254
3795
|
{
|
3255
3796
|
"kind": "Content",
|
3256
|
-
"text": ") => any;\n onseeked: (this: "
|
3797
|
+
"text": ") => any) | null;\n onseeked: ((this: "
|
3257
3798
|
},
|
3258
3799
|
{
|
3259
3800
|
"kind": "Reference",
|
@@ -3271,7 +3812,7 @@
|
|
3271
3812
|
},
|
3272
3813
|
{
|
3273
3814
|
"kind": "Content",
|
3274
|
-
"text": ") => any;\n onseeking: (this: "
|
3815
|
+
"text": ") => any) | null;\n onseeking: ((this: "
|
3275
3816
|
},
|
3276
3817
|
{
|
3277
3818
|
"kind": "Reference",
|
@@ -3289,7 +3830,7 @@
|
|
3289
3830
|
},
|
3290
3831
|
{
|
3291
3832
|
"kind": "Content",
|
3292
|
-
"text": ") => any;\n onselect: (this: "
|
3833
|
+
"text": ") => any) | null;\n onselect: ((this: "
|
3293
3834
|
},
|
3294
3835
|
{
|
3295
3836
|
"kind": "Reference",
|
@@ -3307,7 +3848,7 @@
|
|
3307
3848
|
},
|
3308
3849
|
{
|
3309
3850
|
"kind": "Content",
|
3310
|
-
"text": ") => any;\n onselectionchange: (this: "
|
3851
|
+
"text": ") => any) | null;\n onselectionchange: ((this: "
|
3311
3852
|
},
|
3312
3853
|
{
|
3313
3854
|
"kind": "Reference",
|
@@ -3325,7 +3866,7 @@
|
|
3325
3866
|
},
|
3326
3867
|
{
|
3327
3868
|
"kind": "Content",
|
3328
|
-
"text": ") => any;\n onselectstart: (this: "
|
3869
|
+
"text": ") => any) | null;\n onselectstart: ((this: "
|
3329
3870
|
},
|
3330
3871
|
{
|
3331
3872
|
"kind": "Reference",
|
@@ -3343,7 +3884,7 @@
|
|
3343
3884
|
},
|
3344
3885
|
{
|
3345
3886
|
"kind": "Content",
|
3346
|
-
"text": ") => any;\n onslotchange: (this: "
|
3887
|
+
"text": ") => any) | null;\n onslotchange: ((this: "
|
3347
3888
|
},
|
3348
3889
|
{
|
3349
3890
|
"kind": "Reference",
|
@@ -3361,7 +3902,7 @@
|
|
3361
3902
|
},
|
3362
3903
|
{
|
3363
3904
|
"kind": "Content",
|
3364
|
-
"text": ") => any;\n onstalled: (this: "
|
3905
|
+
"text": ") => any) | null;\n onstalled: ((this: "
|
3365
3906
|
},
|
3366
3907
|
{
|
3367
3908
|
"kind": "Reference",
|
@@ -3379,7 +3920,7 @@
|
|
3379
3920
|
},
|
3380
3921
|
{
|
3381
3922
|
"kind": "Content",
|
3382
|
-
"text": ") => any;\n onsubmit: (this: "
|
3923
|
+
"text": ") => any) | null;\n onsubmit: ((this: "
|
3383
3924
|
},
|
3384
3925
|
{
|
3385
3926
|
"kind": "Reference",
|
@@ -3397,7 +3938,7 @@
|
|
3397
3938
|
},
|
3398
3939
|
{
|
3399
3940
|
"kind": "Content",
|
3400
|
-
"text": ") => any;\n onsuspend: (this: "
|
3941
|
+
"text": ") => any) | null;\n onsuspend: ((this: "
|
3401
3942
|
},
|
3402
3943
|
{
|
3403
3944
|
"kind": "Reference",
|
@@ -3415,7 +3956,7 @@
|
|
3415
3956
|
},
|
3416
3957
|
{
|
3417
3958
|
"kind": "Content",
|
3418
|
-
"text": ") => any;\n ontimeupdate: (this: "
|
3959
|
+
"text": ") => any) | null;\n ontimeupdate: ((this: "
|
3419
3960
|
},
|
3420
3961
|
{
|
3421
3962
|
"kind": "Reference",
|
@@ -3433,7 +3974,7 @@
|
|
3433
3974
|
},
|
3434
3975
|
{
|
3435
3976
|
"kind": "Content",
|
3436
|
-
"text": ") => any;\n ontoggle: (this: "
|
3977
|
+
"text": ") => any) | null;\n ontoggle: ((this: "
|
3437
3978
|
},
|
3438
3979
|
{
|
3439
3980
|
"kind": "Reference",
|
@@ -3446,12 +3987,12 @@
|
|
3446
3987
|
},
|
3447
3988
|
{
|
3448
3989
|
"kind": "Reference",
|
3449
|
-
"text": "
|
3450
|
-
"canonicalReference": "!
|
3990
|
+
"text": "ToggleEvent",
|
3991
|
+
"canonicalReference": "!ToggleEvent:interface"
|
3451
3992
|
},
|
3452
3993
|
{
|
3453
3994
|
"kind": "Content",
|
3454
|
-
"text": ") => any;\n ontouchcancel?: (this: "
|
3995
|
+
"text": ") => any) | null;\n ontouchcancel?: ((this: "
|
3455
3996
|
},
|
3456
3997
|
{
|
3457
3998
|
"kind": "Reference",
|
@@ -3469,7 +4010,7 @@
|
|
3469
4010
|
},
|
3470
4011
|
{
|
3471
4012
|
"kind": "Content",
|
3472
|
-
"text": ") => any;\n ontouchend?: (this: "
|
4013
|
+
"text": ") => any) | null | undefined;\n ontouchend?: ((this: "
|
3473
4014
|
},
|
3474
4015
|
{
|
3475
4016
|
"kind": "Reference",
|
@@ -3487,7 +4028,7 @@
|
|
3487
4028
|
},
|
3488
4029
|
{
|
3489
4030
|
"kind": "Content",
|
3490
|
-
"text": ") => any;\n ontouchmove?: (this: "
|
4031
|
+
"text": ") => any) | null | undefined;\n ontouchmove?: ((this: "
|
3491
4032
|
},
|
3492
4033
|
{
|
3493
4034
|
"kind": "Reference",
|
@@ -3505,7 +4046,7 @@
|
|
3505
4046
|
},
|
3506
4047
|
{
|
3507
4048
|
"kind": "Content",
|
3508
|
-
"text": ") => any;\n ontouchstart?: (this: "
|
4049
|
+
"text": ") => any) | null | undefined;\n ontouchstart?: ((this: "
|
3509
4050
|
},
|
3510
4051
|
{
|
3511
4052
|
"kind": "Reference",
|
@@ -3523,7 +4064,7 @@
|
|
3523
4064
|
},
|
3524
4065
|
{
|
3525
4066
|
"kind": "Content",
|
3526
|
-
"text": ") => any;\n ontransitioncancel: (this: "
|
4067
|
+
"text": ") => any) | null | undefined;\n ontransitioncancel: ((this: "
|
3527
4068
|
},
|
3528
4069
|
{
|
3529
4070
|
"kind": "Reference",
|
@@ -3541,7 +4082,7 @@
|
|
3541
4082
|
},
|
3542
4083
|
{
|
3543
4084
|
"kind": "Content",
|
3544
|
-
"text": ") => any;\n ontransitionend: (this: "
|
4085
|
+
"text": ") => any) | null;\n ontransitionend: ((this: "
|
3545
4086
|
},
|
3546
4087
|
{
|
3547
4088
|
"kind": "Reference",
|
@@ -3559,7 +4100,7 @@
|
|
3559
4100
|
},
|
3560
4101
|
{
|
3561
4102
|
"kind": "Content",
|
3562
|
-
"text": ") => any;\n ontransitionrun: (this: "
|
4103
|
+
"text": ") => any) | null;\n ontransitionrun: ((this: "
|
3563
4104
|
},
|
3564
4105
|
{
|
3565
4106
|
"kind": "Reference",
|
@@ -3577,7 +4118,7 @@
|
|
3577
4118
|
},
|
3578
4119
|
{
|
3579
4120
|
"kind": "Content",
|
3580
|
-
"text": ") => any;\n ontransitionstart: (this: "
|
4121
|
+
"text": ") => any) | null;\n ontransitionstart: ((this: "
|
3581
4122
|
},
|
3582
4123
|
{
|
3583
4124
|
"kind": "Reference",
|
@@ -3595,7 +4136,7 @@
|
|
3595
4136
|
},
|
3596
4137
|
{
|
3597
4138
|
"kind": "Content",
|
3598
|
-
"text": ") => any;\n onvolumechange: (this: "
|
4139
|
+
"text": ") => any) | null;\n onvolumechange: ((this: "
|
3599
4140
|
},
|
3600
4141
|
{
|
3601
4142
|
"kind": "Reference",
|
@@ -3613,7 +4154,7 @@
|
|
3613
4154
|
},
|
3614
4155
|
{
|
3615
4156
|
"kind": "Content",
|
3616
|
-
"text": ") => any;\n onwaiting: (this: "
|
4157
|
+
"text": ") => any) | null;\n onwaiting: ((this: "
|
3617
4158
|
},
|
3618
4159
|
{
|
3619
4160
|
"kind": "Reference",
|
@@ -3631,7 +4172,7 @@
|
|
3631
4172
|
},
|
3632
4173
|
{
|
3633
4174
|
"kind": "Content",
|
3634
|
-
"text": ") => any;\n onwebkitanimationend: (this: "
|
4175
|
+
"text": ") => any) | null;\n onwebkitanimationend: ((this: "
|
3635
4176
|
},
|
3636
4177
|
{
|
3637
4178
|
"kind": "Reference",
|
@@ -3649,7 +4190,7 @@
|
|
3649
4190
|
},
|
3650
4191
|
{
|
3651
4192
|
"kind": "Content",
|
3652
|
-
"text": ") => any;\n onwebkitanimationiteration: (this: "
|
4193
|
+
"text": ") => any) | null;\n onwebkitanimationiteration: ((this: "
|
3653
4194
|
},
|
3654
4195
|
{
|
3655
4196
|
"kind": "Reference",
|
@@ -3667,7 +4208,7 @@
|
|
3667
4208
|
},
|
3668
4209
|
{
|
3669
4210
|
"kind": "Content",
|
3670
|
-
"text": ") => any;\n onwebkitanimationstart: (this: "
|
4211
|
+
"text": ") => any) | null;\n onwebkitanimationstart: ((this: "
|
3671
4212
|
},
|
3672
4213
|
{
|
3673
4214
|
"kind": "Reference",
|
@@ -3685,7 +4226,7 @@
|
|
3685
4226
|
},
|
3686
4227
|
{
|
3687
4228
|
"kind": "Content",
|
3688
|
-
"text": ") => any;\n onwebkittransitionend: (this: "
|
4229
|
+
"text": ") => any) | null;\n onwebkittransitionend: ((this: "
|
3689
4230
|
},
|
3690
4231
|
{
|
3691
4232
|
"kind": "Reference",
|
@@ -3703,7 +4244,7 @@
|
|
3703
4244
|
},
|
3704
4245
|
{
|
3705
4246
|
"kind": "Content",
|
3706
|
-
"text": ") => any;\n onwheel: (this: "
|
4247
|
+
"text": ") => any) | null;\n onwheel: ((this: "
|
3707
4248
|
},
|
3708
4249
|
{
|
3709
4250
|
"kind": "Reference",
|
@@ -3721,7 +4262,7 @@
|
|
3721
4262
|
},
|
3722
4263
|
{
|
3723
4264
|
"kind": "Content",
|
3724
|
-
"text": ") => any;\n autofocus: boolean;\n readonly dataset: "
|
4265
|
+
"text": ") => any) | null;\n autofocus: boolean;\n readonly dataset: "
|
3725
4266
|
},
|
3726
4267
|
{
|
3727
4268
|
"kind": "Reference",
|
@@ -3752,13 +4293,47 @@
|
|
3752
4293
|
}
|
3753
4294
|
],
|
3754
4295
|
"fileUrlPath": "src/eventEmitter/eventEmitterMixin.ts",
|
3755
|
-
"
|
4296
|
+
"returnTypeTokenRange": {
|
4297
|
+
"startIndex": 14,
|
4298
|
+
"endIndex": 755
|
4299
|
+
},
|
3756
4300
|
"releaseTag": "Public",
|
3757
|
-
"
|
3758
|
-
"
|
3759
|
-
|
3760
|
-
|
3761
|
-
|
4301
|
+
"overloadIndex": 1,
|
4302
|
+
"parameters": [
|
4303
|
+
{
|
4304
|
+
"parameterName": "Target",
|
4305
|
+
"parameterTypeTokenRange": {
|
4306
|
+
"startIndex": 11,
|
4307
|
+
"endIndex": 13
|
4308
|
+
},
|
4309
|
+
"isOptional": false
|
4310
|
+
}
|
4311
|
+
],
|
4312
|
+
"typeParameters": [
|
4313
|
+
{
|
4314
|
+
"typeParameterName": "TEventDetailMap",
|
4315
|
+
"constraintTokenRange": {
|
4316
|
+
"startIndex": 1,
|
4317
|
+
"endIndex": 2
|
4318
|
+
},
|
4319
|
+
"defaultTypeTokenRange": {
|
4320
|
+
"startIndex": 0,
|
4321
|
+
"endIndex": 0
|
4322
|
+
}
|
4323
|
+
},
|
4324
|
+
{
|
4325
|
+
"typeParameterName": "TTarget",
|
4326
|
+
"constraintTokenRange": {
|
4327
|
+
"startIndex": 3,
|
4328
|
+
"endIndex": 6
|
4329
|
+
},
|
4330
|
+
"defaultTypeTokenRange": {
|
4331
|
+
"startIndex": 7,
|
4332
|
+
"endIndex": 10
|
4333
|
+
}
|
4334
|
+
}
|
4335
|
+
],
|
4336
|
+
"name": "EventEmitter"
|
3762
4337
|
},
|
3763
4338
|
{
|
3764
4339
|
"kind": "Interface",
|
@@ -3952,17 +4527,21 @@
|
|
3952
4527
|
}
|
3953
4528
|
},
|
3954
4529
|
{
|
3955
|
-
"kind": "
|
3956
|
-
"canonicalReference": "@genesislcap/foundation-events!getBaseEmitArgs:
|
4530
|
+
"kind": "Function",
|
4531
|
+
"canonicalReference": "@genesislcap/foundation-events!getBaseEmitArgs:function(1)",
|
3957
4532
|
"docComment": "/**\n * @public\n */\n",
|
3958
4533
|
"excerptTokens": [
|
3959
4534
|
{
|
3960
4535
|
"kind": "Content",
|
3961
|
-
"text": "getBaseEmitArgs: "
|
4536
|
+
"text": "getBaseEmitArgs: (...args: "
|
4537
|
+
},
|
4538
|
+
{
|
4539
|
+
"kind": "Content",
|
4540
|
+
"text": "unknown[]"
|
3962
4541
|
},
|
3963
4542
|
{
|
3964
4543
|
"kind": "Content",
|
3965
|
-
"text": "
|
4544
|
+
"text": ") => "
|
3966
4545
|
},
|
3967
4546
|
{
|
3968
4547
|
"kind": "Reference",
|
@@ -3971,26 +4550,32 @@
|
|
3971
4550
|
}
|
3972
4551
|
],
|
3973
4552
|
"fileUrlPath": "src/types.ts",
|
3974
|
-
"
|
4553
|
+
"returnTypeTokenRange": {
|
4554
|
+
"startIndex": 3,
|
4555
|
+
"endIndex": 4
|
4556
|
+
},
|
3975
4557
|
"releaseTag": "Public",
|
3976
|
-
"
|
3977
|
-
"
|
3978
|
-
|
3979
|
-
|
3980
|
-
|
4558
|
+
"overloadIndex": 1,
|
4559
|
+
"parameters": [
|
4560
|
+
{
|
4561
|
+
"parameterName": "args",
|
4562
|
+
"parameterTypeTokenRange": {
|
4563
|
+
"startIndex": 1,
|
4564
|
+
"endIndex": 2
|
4565
|
+
},
|
4566
|
+
"isOptional": false
|
4567
|
+
}
|
4568
|
+
],
|
4569
|
+
"name": "getBaseEmitArgs"
|
3981
4570
|
},
|
3982
4571
|
{
|
3983
|
-
"kind": "
|
3984
|
-
"canonicalReference": "@genesislcap/foundation-events!isEmitOptions:
|
4572
|
+
"kind": "Function",
|
4573
|
+
"canonicalReference": "@genesislcap/foundation-events!isEmitOptions:function(1)",
|
3985
4574
|
"docComment": "/**\n * @public\n */\n",
|
3986
4575
|
"excerptTokens": [
|
3987
4576
|
{
|
3988
4577
|
"kind": "Content",
|
3989
|
-
"text": "isEmitOptions: "
|
3990
|
-
},
|
3991
|
-
{
|
3992
|
-
"kind": "Content",
|
3993
|
-
"text": "(candidate: "
|
4578
|
+
"text": "isEmitOptions: (candidate: "
|
3994
4579
|
},
|
3995
4580
|
{
|
3996
4581
|
"kind": "Reference",
|
@@ -3999,17 +4584,35 @@
|
|
3999
4584
|
},
|
4000
4585
|
{
|
4001
4586
|
"kind": "Content",
|
4002
|
-
"text": " | any
|
4587
|
+
"text": " | any"
|
4588
|
+
},
|
4589
|
+
{
|
4590
|
+
"kind": "Content",
|
4591
|
+
"text": ") => "
|
4592
|
+
},
|
4593
|
+
{
|
4594
|
+
"kind": "Content",
|
4595
|
+
"text": "boolean"
|
4003
4596
|
}
|
4004
4597
|
],
|
4005
4598
|
"fileUrlPath": "src/types.ts",
|
4006
|
-
"
|
4599
|
+
"returnTypeTokenRange": {
|
4600
|
+
"startIndex": 4,
|
4601
|
+
"endIndex": 5
|
4602
|
+
},
|
4007
4603
|
"releaseTag": "Public",
|
4008
|
-
"
|
4009
|
-
"
|
4010
|
-
|
4011
|
-
|
4012
|
-
|
4604
|
+
"overloadIndex": 1,
|
4605
|
+
"parameters": [
|
4606
|
+
{
|
4607
|
+
"parameterName": "candidate",
|
4608
|
+
"parameterTypeTokenRange": {
|
4609
|
+
"startIndex": 1,
|
4610
|
+
"endIndex": 3
|
4611
|
+
},
|
4612
|
+
"isOptional": false
|
4613
|
+
}
|
4614
|
+
],
|
4615
|
+
"name": "isEmitOptions"
|
4013
4616
|
},
|
4014
4617
|
{
|
4015
4618
|
"kind": "TypeAlias",
|
@@ -4090,17 +4693,13 @@
|
|
4090
4693
|
}
|
4091
4694
|
},
|
4092
4695
|
{
|
4093
|
-
"kind": "
|
4094
|
-
"canonicalReference": "@genesislcap/foundation-events!registerEmitter:
|
4696
|
+
"kind": "Function",
|
4697
|
+
"canonicalReference": "@genesislcap/foundation-events!registerEmitter:function(1)",
|
4095
4698
|
"docComment": "/**\n * Register an emitter with the DI.\n *\n * @typeParam TEventDetailMap - The {@link EventDetailMap}.\n *\n * @public\n */\n",
|
4096
4699
|
"excerptTokens": [
|
4097
4700
|
{
|
4098
4701
|
"kind": "Content",
|
4099
|
-
"text": "registerEmitter: "
|
4100
|
-
},
|
4101
|
-
{
|
4102
|
-
"kind": "Content",
|
4103
|
-
"text": "<TEventDetailMap extends "
|
4702
|
+
"text": "registerEmitter: <TEventDetailMap extends "
|
4104
4703
|
},
|
4105
4704
|
{
|
4106
4705
|
"kind": "Reference",
|
@@ -4109,7 +4708,11 @@
|
|
4109
4708
|
},
|
4110
4709
|
{
|
4111
4710
|
"kind": "Content",
|
4112
|
-
"text": ">() =>
|
4711
|
+
"text": ">() => "
|
4712
|
+
},
|
4713
|
+
{
|
4714
|
+
"kind": "Content",
|
4715
|
+
"text": "import(\"@microsoft/fast-foundation\")."
|
4113
4716
|
},
|
4114
4717
|
{
|
4115
4718
|
"kind": "Reference",
|
@@ -4131,13 +4734,27 @@
|
|
4131
4734
|
}
|
4132
4735
|
],
|
4133
4736
|
"fileUrlPath": "src/eventEmitter/eventEmitterDI.ts",
|
4134
|
-
"
|
4135
|
-
|
4136
|
-
"name": "registerEmitter",
|
4137
|
-
"variableTypeTokenRange": {
|
4138
|
-
"startIndex": 1,
|
4737
|
+
"returnTypeTokenRange": {
|
4738
|
+
"startIndex": 3,
|
4139
4739
|
"endIndex": 8
|
4140
|
-
}
|
4740
|
+
},
|
4741
|
+
"releaseTag": "Public",
|
4742
|
+
"overloadIndex": 1,
|
4743
|
+
"parameters": [],
|
4744
|
+
"typeParameters": [
|
4745
|
+
{
|
4746
|
+
"typeParameterName": "TEventDetailMap",
|
4747
|
+
"constraintTokenRange": {
|
4748
|
+
"startIndex": 1,
|
4749
|
+
"endIndex": 2
|
4750
|
+
},
|
4751
|
+
"defaultTypeTokenRange": {
|
4752
|
+
"startIndex": 0,
|
4753
|
+
"endIndex": 0
|
4754
|
+
}
|
4755
|
+
}
|
4756
|
+
],
|
4757
|
+
"name": "registerEmitter"
|
4141
4758
|
},
|
4142
4759
|
{
|
4143
4760
|
"kind": "Variable",
|