@descope/tenant-profile-widget 0.0.0-next-d3790478-20250722
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/LICENSE +21 -0
- package/README.md +101 -0
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/index.d.ts +1695 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/package.json +101 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1695 @@
|
|
|
1
|
+
import * as redux from 'redux';
|
|
2
|
+
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
3
|
+
import createWebSdk from '@descope/web-js-sdk';
|
|
4
|
+
import * as _descope_sdk_mixins from '@descope/sdk-mixins';
|
|
5
|
+
import * as _descope_sdk_component_drivers from '@descope/sdk-component-drivers';
|
|
6
|
+
|
|
7
|
+
declare const createSdk: (config: Parameters<typeof createWebSdk>[0], tenant: string, mock: boolean, widgetId?: string) => {
|
|
8
|
+
user: {
|
|
9
|
+
me: () => Promise<any>;
|
|
10
|
+
};
|
|
11
|
+
tenant: {
|
|
12
|
+
details: () => Promise<any>;
|
|
13
|
+
adminLinkSso: () => Promise<any>;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
type Sdk = ReturnType<typeof createSdk>;
|
|
17
|
+
|
|
18
|
+
type State = {
|
|
19
|
+
me: {
|
|
20
|
+
loading: boolean;
|
|
21
|
+
error: unknown;
|
|
22
|
+
data: Record<string, any>;
|
|
23
|
+
};
|
|
24
|
+
tenant: {
|
|
25
|
+
loading: boolean;
|
|
26
|
+
error: unknown;
|
|
27
|
+
data: Record<string, any>;
|
|
28
|
+
};
|
|
29
|
+
tenantAdminLinkSSO: {
|
|
30
|
+
loading: boolean;
|
|
31
|
+
error: unknown;
|
|
32
|
+
data: string;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
declare const TenantProfileWidget: {
|
|
37
|
+
new (...params: any[]): {
|
|
38
|
+
init(): Promise<void>;
|
|
39
|
+
tenantAdminLinkSSODriver: _descope_sdk_component_drivers.LinkDriver;
|
|
40
|
+
"__#8@#initTenantAdminLinkSSO"(): void;
|
|
41
|
+
"__#8@#onValueUpdate": (tenantAdminLinkSSO: string) => void;
|
|
42
|
+
onWidgetRootReady: (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
|
|
43
|
+
"__#29620@#ModalDriverWrapper": {
|
|
44
|
+
new (refOrRefFn: Element | (() => HTMLElement), config: {
|
|
45
|
+
logger: {
|
|
46
|
+
error(...data: any[]): void;
|
|
47
|
+
warn(...data: any[]): void;
|
|
48
|
+
info(...data: any[]): void;
|
|
49
|
+
debug(...data: any[]): void;
|
|
50
|
+
};
|
|
51
|
+
}): {
|
|
52
|
+
setContent(template: HTMLTemplateElement): void;
|
|
53
|
+
"__#29619@#private": any;
|
|
54
|
+
beforeOpen: () => void | Promise<void>;
|
|
55
|
+
afterClose: () => void;
|
|
56
|
+
nodeName: string;
|
|
57
|
+
close(): void;
|
|
58
|
+
open(): Promise<void>;
|
|
59
|
+
reset(): void;
|
|
60
|
+
remove(): void;
|
|
61
|
+
"__#29617@#private": any;
|
|
62
|
+
logger: {
|
|
63
|
+
error(...data: any[]): void;
|
|
64
|
+
warn(...data: any[]): void;
|
|
65
|
+
info(...data: any[]): void;
|
|
66
|
+
debug(...data: any[]): void;
|
|
67
|
+
};
|
|
68
|
+
readonly asyncEle: Promise<Element>;
|
|
69
|
+
readonly ele: Element;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
createModal(config?: Record<string, string>): _descope_sdk_component_drivers.ModalDriver;
|
|
73
|
+
"__#29616@#getComponentsVersion": (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>);
|
|
74
|
+
"__#29616@#descopeUi": Promise<any>;
|
|
75
|
+
readonly descopeUi: Promise<any>;
|
|
76
|
+
"__#29616@#loadDescopeUiComponent": ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>);
|
|
77
|
+
"__#29616@#getDescopeUi": (() => Promise<any>) & (() => Promise<any>) & (() => Promise<any>);
|
|
78
|
+
loadDescopeUiComponents: ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>) & ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>) & ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>);
|
|
79
|
+
readonly baseCdnUrl: string;
|
|
80
|
+
injectNpmLib: ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
81
|
+
id: string;
|
|
82
|
+
url: URL;
|
|
83
|
+
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
84
|
+
id: string;
|
|
85
|
+
url: URL;
|
|
86
|
+
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
87
|
+
id: string;
|
|
88
|
+
url: URL;
|
|
89
|
+
}>);
|
|
90
|
+
"__#29606@#logger": _descope_sdk_mixins.Logger;
|
|
91
|
+
"__#29606@#wrapLogger": ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger);
|
|
92
|
+
logger: _descope_sdk_mixins.Logger;
|
|
93
|
+
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: _descope_sdk_mixins.LogLevel, data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: _descope_sdk_mixins.LogLevel, args: any[]) => void);
|
|
94
|
+
accessKey: string;
|
|
95
|
+
readonly accessKeyLabel: string;
|
|
96
|
+
autocapitalize: string;
|
|
97
|
+
dir: string;
|
|
98
|
+
draggable: boolean;
|
|
99
|
+
hidden: boolean;
|
|
100
|
+
inert: boolean;
|
|
101
|
+
innerText: string;
|
|
102
|
+
lang: string;
|
|
103
|
+
readonly offsetHeight: number;
|
|
104
|
+
readonly offsetLeft: number;
|
|
105
|
+
readonly offsetParent: Element | null;
|
|
106
|
+
readonly offsetTop: number;
|
|
107
|
+
readonly offsetWidth: number;
|
|
108
|
+
outerText: string;
|
|
109
|
+
popover: string | null;
|
|
110
|
+
spellcheck: boolean;
|
|
111
|
+
title: string;
|
|
112
|
+
translate: boolean;
|
|
113
|
+
attachInternals: (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals);
|
|
114
|
+
click: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
115
|
+
hidePopover: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
116
|
+
showPopover: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
117
|
+
togglePopover: ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean) & ((force?: boolean) => boolean);
|
|
118
|
+
addEventListener: {
|
|
119
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
120
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
121
|
+
} & {
|
|
122
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
123
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
124
|
+
} & {
|
|
125
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
126
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
127
|
+
} & {
|
|
128
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
129
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
130
|
+
} & {
|
|
131
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
132
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
133
|
+
} & {
|
|
134
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
135
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
136
|
+
} & {
|
|
137
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
138
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
139
|
+
} & {
|
|
140
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
141
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
142
|
+
} & {
|
|
143
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
144
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
145
|
+
} & {
|
|
146
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
147
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
148
|
+
} & {
|
|
149
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
150
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
151
|
+
} & {
|
|
152
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
153
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
154
|
+
} & {
|
|
155
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
156
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
157
|
+
} & {
|
|
158
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
159
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
160
|
+
} & {
|
|
161
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
162
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
163
|
+
};
|
|
164
|
+
removeEventListener: {
|
|
165
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
166
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
167
|
+
} & {
|
|
168
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
169
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
170
|
+
} & {
|
|
171
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
172
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
173
|
+
} & {
|
|
174
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
175
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
176
|
+
} & {
|
|
177
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
178
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
179
|
+
} & {
|
|
180
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
181
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
182
|
+
} & {
|
|
183
|
+
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
184
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
185
|
+
} & {
|
|
186
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
187
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
188
|
+
} & {
|
|
189
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
190
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
191
|
+
} & {
|
|
192
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
193
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
194
|
+
} & {
|
|
195
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
196
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
197
|
+
} & {
|
|
198
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
199
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
200
|
+
} & {
|
|
201
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
202
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
203
|
+
} & {
|
|
204
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
205
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
206
|
+
} & {
|
|
207
|
+
<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
208
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
209
|
+
};
|
|
210
|
+
attributeChangedCallback: ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & {
|
|
211
|
+
(attrName: string, oldValue: string | null, newValue: string | null): void;
|
|
212
|
+
(attrName: string, oldValue: string | null, newValue: string | null): void;
|
|
213
|
+
} & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string | null, newValue: string | null) => void);
|
|
214
|
+
connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & {
|
|
215
|
+
(): void;
|
|
216
|
+
(): void;
|
|
217
|
+
} & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
218
|
+
readonly attributes: NamedNodeMap;
|
|
219
|
+
readonly classList: DOMTokenList;
|
|
220
|
+
className: string;
|
|
221
|
+
readonly clientHeight: number;
|
|
222
|
+
readonly clientLeft: number;
|
|
223
|
+
readonly clientTop: number;
|
|
224
|
+
readonly clientWidth: number;
|
|
225
|
+
id: string;
|
|
226
|
+
readonly localName: string;
|
|
227
|
+
readonly namespaceURI: string | null;
|
|
228
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any);
|
|
229
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any);
|
|
230
|
+
outerHTML: string;
|
|
231
|
+
readonly ownerDocument: Document;
|
|
232
|
+
readonly part: DOMTokenList;
|
|
233
|
+
readonly prefix: string | null;
|
|
234
|
+
readonly scrollHeight: number;
|
|
235
|
+
scrollLeft: number;
|
|
236
|
+
scrollTop: number;
|
|
237
|
+
readonly scrollWidth: number;
|
|
238
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
239
|
+
slot: string;
|
|
240
|
+
readonly tagName: string;
|
|
241
|
+
attachShadow: ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot);
|
|
242
|
+
checkVisibility: ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean);
|
|
243
|
+
closest: {
|
|
244
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
245
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
246
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
247
|
+
<E extends Element = Element>(selectors: string): E;
|
|
248
|
+
} & {
|
|
249
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
250
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
251
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
252
|
+
<E extends Element = Element>(selectors: string): E;
|
|
253
|
+
} & {
|
|
254
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
255
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
256
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
257
|
+
<E extends Element = Element>(selectors: string): E;
|
|
258
|
+
} & {
|
|
259
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
260
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
261
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
262
|
+
<E extends Element = Element>(selectors: string): E;
|
|
263
|
+
} & {
|
|
264
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
265
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
266
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
267
|
+
<E extends Element = Element>(selectors: string): E;
|
|
268
|
+
} & {
|
|
269
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
270
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
271
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
272
|
+
<E extends Element = Element>(selectors: string): E;
|
|
273
|
+
} & {
|
|
274
|
+
<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
275
|
+
<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
276
|
+
<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
277
|
+
<E extends Element = Element>(selectors: string): E;
|
|
278
|
+
} & {
|
|
279
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
280
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
281
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
282
|
+
<E extends Element = Element>(selectors: string): E;
|
|
283
|
+
} & {
|
|
284
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
285
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
286
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
287
|
+
<E extends Element = Element>(selectors: string): E;
|
|
288
|
+
} & {
|
|
289
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
290
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
291
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
292
|
+
<E extends Element = Element>(selectors: string): E;
|
|
293
|
+
} & {
|
|
294
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
295
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
296
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
297
|
+
<E extends Element = Element>(selectors: string): E;
|
|
298
|
+
} & {
|
|
299
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
300
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
301
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
302
|
+
<E extends Element = Element>(selectors: string): E;
|
|
303
|
+
} & {
|
|
304
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
305
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
306
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
307
|
+
<E extends Element = Element>(selectors: string): E;
|
|
308
|
+
} & {
|
|
309
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
310
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
311
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
312
|
+
<E extends Element = Element>(selectors: string): E;
|
|
313
|
+
} & {
|
|
314
|
+
<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
315
|
+
<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
316
|
+
<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
317
|
+
<E extends Element = Element>(selectors: string): E;
|
|
318
|
+
};
|
|
319
|
+
computedStyleMap: (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly);
|
|
320
|
+
getAttribute: ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string | null) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string);
|
|
321
|
+
getAttributeNS: ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string | null, localName: string) => string | null) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string);
|
|
322
|
+
getAttributeNames: (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]);
|
|
323
|
+
getAttributeNode: ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr | null) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr);
|
|
324
|
+
getAttributeNodeNS: ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string | null, localName: string) => Attr | null) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr);
|
|
325
|
+
getBoundingClientRect: (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect);
|
|
326
|
+
getClientRects: (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList);
|
|
327
|
+
getElementsByClassName: ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>);
|
|
328
|
+
getElementsByTagName: {
|
|
329
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
330
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
331
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
332
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
333
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
334
|
+
} & {
|
|
335
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
336
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
337
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
338
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
339
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
340
|
+
} & {
|
|
341
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
342
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
343
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
344
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
345
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
346
|
+
} & {
|
|
347
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
348
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
349
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
350
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
351
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
352
|
+
} & {
|
|
353
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
354
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
355
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
356
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
357
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
358
|
+
} & {
|
|
359
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
360
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
361
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
362
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
363
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
364
|
+
} & {
|
|
365
|
+
<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
366
|
+
<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
367
|
+
<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
368
|
+
<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
369
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
370
|
+
} & {
|
|
371
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
372
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
373
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
374
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
375
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
376
|
+
} & {
|
|
377
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
378
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
379
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
380
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
381
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
382
|
+
} & {
|
|
383
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
384
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
385
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
386
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
387
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
388
|
+
} & {
|
|
389
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
390
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
391
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
392
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
393
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
394
|
+
} & {
|
|
395
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
396
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
397
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
398
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
399
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
400
|
+
} & {
|
|
401
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
402
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
403
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
404
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
405
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
406
|
+
} & {
|
|
407
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
408
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
409
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
410
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
411
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
412
|
+
} & {
|
|
413
|
+
<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
414
|
+
<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
415
|
+
<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
416
|
+
<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
417
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
418
|
+
};
|
|
419
|
+
getElementsByTagNameNS: {
|
|
420
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
421
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
422
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
423
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
424
|
+
} & {
|
|
425
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
426
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
427
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
428
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
429
|
+
} & {
|
|
430
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
431
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
432
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
433
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
434
|
+
} & {
|
|
435
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
436
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
437
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
438
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
439
|
+
} & {
|
|
440
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
441
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
442
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
443
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
444
|
+
} & {
|
|
445
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
446
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
447
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
448
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
449
|
+
} & {
|
|
450
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
451
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
452
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
453
|
+
(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
454
|
+
} & {
|
|
455
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
456
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
457
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
458
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
459
|
+
} & {
|
|
460
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
461
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
462
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
463
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
464
|
+
} & {
|
|
465
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
466
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
467
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
468
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
469
|
+
} & {
|
|
470
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
471
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
472
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
473
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
474
|
+
} & {
|
|
475
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
476
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
477
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
478
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
479
|
+
} & {
|
|
480
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
481
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
482
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
483
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
484
|
+
} & {
|
|
485
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
486
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
487
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
488
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
489
|
+
} & {
|
|
490
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
491
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
492
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
493
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
494
|
+
};
|
|
495
|
+
hasAttribute: ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean);
|
|
496
|
+
hasAttributeNS: ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string | null, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean);
|
|
497
|
+
hasAttributes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
|
|
498
|
+
hasPointerCapture: ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean);
|
|
499
|
+
insertAdjacentElement: ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element | null) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element);
|
|
500
|
+
insertAdjacentHTML: ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, string: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void);
|
|
501
|
+
insertAdjacentText: ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void);
|
|
502
|
+
matches: ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean);
|
|
503
|
+
releasePointerCapture: ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void);
|
|
504
|
+
removeAttribute: ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void);
|
|
505
|
+
removeAttributeNS: ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string | null, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void);
|
|
506
|
+
removeAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
|
|
507
|
+
requestFullscreen: ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>);
|
|
508
|
+
requestPointerLock: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & ((options?: PointerLockOptions) => Promise<void>) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
509
|
+
scroll: {
|
|
510
|
+
(options?: ScrollToOptions): void;
|
|
511
|
+
(x: number, y: number): void;
|
|
512
|
+
} & {
|
|
513
|
+
(options?: ScrollToOptions): void;
|
|
514
|
+
(x: number, y: number): void;
|
|
515
|
+
} & {
|
|
516
|
+
(options?: ScrollToOptions): void;
|
|
517
|
+
(x: number, y: number): void;
|
|
518
|
+
} & {
|
|
519
|
+
(options?: ScrollToOptions): void;
|
|
520
|
+
(x: number, y: number): void;
|
|
521
|
+
} & {
|
|
522
|
+
(options?: ScrollToOptions): void;
|
|
523
|
+
(x: number, y: number): void;
|
|
524
|
+
} & {
|
|
525
|
+
(options?: ScrollToOptions): void;
|
|
526
|
+
(x: number, y: number): void;
|
|
527
|
+
} & {
|
|
528
|
+
(options?: ScrollToOptions): void;
|
|
529
|
+
(x: number, y: number): void;
|
|
530
|
+
} & {
|
|
531
|
+
(options?: ScrollToOptions): void;
|
|
532
|
+
(x: number, y: number): void;
|
|
533
|
+
} & {
|
|
534
|
+
(options?: ScrollToOptions): void;
|
|
535
|
+
(x: number, y: number): void;
|
|
536
|
+
} & {
|
|
537
|
+
(options?: ScrollToOptions): void;
|
|
538
|
+
(x: number, y: number): void;
|
|
539
|
+
} & {
|
|
540
|
+
(options?: ScrollToOptions): void;
|
|
541
|
+
(x: number, y: number): void;
|
|
542
|
+
} & {
|
|
543
|
+
(options?: ScrollToOptions): void;
|
|
544
|
+
(x: number, y: number): void;
|
|
545
|
+
} & {
|
|
546
|
+
(options?: ScrollToOptions): void;
|
|
547
|
+
(x: number, y: number): void;
|
|
548
|
+
} & {
|
|
549
|
+
(options?: ScrollToOptions): void;
|
|
550
|
+
(x: number, y: number): void;
|
|
551
|
+
} & {
|
|
552
|
+
(options?: ScrollToOptions): void;
|
|
553
|
+
(x: number, y: number): void;
|
|
554
|
+
};
|
|
555
|
+
scrollBy: {
|
|
556
|
+
(options?: ScrollToOptions): void;
|
|
557
|
+
(x: number, y: number): void;
|
|
558
|
+
} & {
|
|
559
|
+
(options?: ScrollToOptions): void;
|
|
560
|
+
(x: number, y: number): void;
|
|
561
|
+
} & {
|
|
562
|
+
(options?: ScrollToOptions): void;
|
|
563
|
+
(x: number, y: number): void;
|
|
564
|
+
} & {
|
|
565
|
+
(options?: ScrollToOptions): void;
|
|
566
|
+
(x: number, y: number): void;
|
|
567
|
+
} & {
|
|
568
|
+
(options?: ScrollToOptions): void;
|
|
569
|
+
(x: number, y: number): void;
|
|
570
|
+
} & {
|
|
571
|
+
(options?: ScrollToOptions): void;
|
|
572
|
+
(x: number, y: number): void;
|
|
573
|
+
} & {
|
|
574
|
+
(options?: ScrollToOptions): void;
|
|
575
|
+
(x: number, y: number): void;
|
|
576
|
+
} & {
|
|
577
|
+
(options?: ScrollToOptions): void;
|
|
578
|
+
(x: number, y: number): void;
|
|
579
|
+
} & {
|
|
580
|
+
(options?: ScrollToOptions): void;
|
|
581
|
+
(x: number, y: number): void;
|
|
582
|
+
} & {
|
|
583
|
+
(options?: ScrollToOptions): void;
|
|
584
|
+
(x: number, y: number): void;
|
|
585
|
+
} & {
|
|
586
|
+
(options?: ScrollToOptions): void;
|
|
587
|
+
(x: number, y: number): void;
|
|
588
|
+
} & {
|
|
589
|
+
(options?: ScrollToOptions): void;
|
|
590
|
+
(x: number, y: number): void;
|
|
591
|
+
} & {
|
|
592
|
+
(options?: ScrollToOptions): void;
|
|
593
|
+
(x: number, y: number): void;
|
|
594
|
+
} & {
|
|
595
|
+
(options?: ScrollToOptions): void;
|
|
596
|
+
(x: number, y: number): void;
|
|
597
|
+
} & {
|
|
598
|
+
(options?: ScrollToOptions): void;
|
|
599
|
+
(x: number, y: number): void;
|
|
600
|
+
};
|
|
601
|
+
scrollIntoView: ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void);
|
|
602
|
+
scrollTo: {
|
|
603
|
+
(options?: ScrollToOptions): void;
|
|
604
|
+
(x: number, y: number): void;
|
|
605
|
+
} & {
|
|
606
|
+
(options?: ScrollToOptions): void;
|
|
607
|
+
(x: number, y: number): void;
|
|
608
|
+
} & {
|
|
609
|
+
(options?: ScrollToOptions): void;
|
|
610
|
+
(x: number, y: number): void;
|
|
611
|
+
} & {
|
|
612
|
+
(options?: ScrollToOptions): void;
|
|
613
|
+
(x: number, y: number): void;
|
|
614
|
+
} & {
|
|
615
|
+
(options?: ScrollToOptions): void;
|
|
616
|
+
(x: number, y: number): void;
|
|
617
|
+
} & {
|
|
618
|
+
(options?: ScrollToOptions): void;
|
|
619
|
+
(x: number, y: number): void;
|
|
620
|
+
} & {
|
|
621
|
+
(options?: ScrollToOptions): void;
|
|
622
|
+
(x: number, y: number): void;
|
|
623
|
+
} & {
|
|
624
|
+
(options?: ScrollToOptions): void;
|
|
625
|
+
(x: number, y: number): void;
|
|
626
|
+
} & {
|
|
627
|
+
(options?: ScrollToOptions): void;
|
|
628
|
+
(x: number, y: number): void;
|
|
629
|
+
} & {
|
|
630
|
+
(options?: ScrollToOptions): void;
|
|
631
|
+
(x: number, y: number): void;
|
|
632
|
+
} & {
|
|
633
|
+
(options?: ScrollToOptions): void;
|
|
634
|
+
(x: number, y: number): void;
|
|
635
|
+
} & {
|
|
636
|
+
(options?: ScrollToOptions): void;
|
|
637
|
+
(x: number, y: number): void;
|
|
638
|
+
} & {
|
|
639
|
+
(options?: ScrollToOptions): void;
|
|
640
|
+
(x: number, y: number): void;
|
|
641
|
+
} & {
|
|
642
|
+
(options?: ScrollToOptions): void;
|
|
643
|
+
(x: number, y: number): void;
|
|
644
|
+
} & {
|
|
645
|
+
(options?: ScrollToOptions): void;
|
|
646
|
+
(x: number, y: number): void;
|
|
647
|
+
};
|
|
648
|
+
setAttribute: ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void);
|
|
649
|
+
setAttributeNS: ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string | null, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void);
|
|
650
|
+
setAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr | null) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
|
|
651
|
+
setAttributeNodeNS: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr | null) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
|
|
652
|
+
setPointerCapture: ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void);
|
|
653
|
+
toggleAttribute: ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean);
|
|
654
|
+
webkitMatchesSelector: ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean);
|
|
655
|
+
readonly baseURI: string;
|
|
656
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
657
|
+
readonly firstChild: ChildNode | null;
|
|
658
|
+
readonly isConnected: boolean;
|
|
659
|
+
readonly lastChild: ChildNode | null;
|
|
660
|
+
readonly nextSibling: ChildNode | null;
|
|
661
|
+
readonly nodeName: string;
|
|
662
|
+
readonly nodeType: number;
|
|
663
|
+
nodeValue: string | null;
|
|
664
|
+
readonly parentElement: HTMLElement | null;
|
|
665
|
+
readonly parentNode: ParentNode | null;
|
|
666
|
+
readonly previousSibling: ChildNode | null;
|
|
667
|
+
textContent: string | null;
|
|
668
|
+
appendChild: (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T extends Node>(node: T) => T) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1);
|
|
669
|
+
cloneNode: ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node);
|
|
670
|
+
compareDocumentPosition: ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number);
|
|
671
|
+
contains: ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node | null) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean);
|
|
672
|
+
getRootNode: ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node);
|
|
673
|
+
hasChildNodes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
|
|
674
|
+
insertBefore: (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T extends Node>(node: T, child: Node | null) => T) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2);
|
|
675
|
+
isDefaultNamespace: ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string | null) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean);
|
|
676
|
+
isEqualNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node | null) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
677
|
+
isSameNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node | null) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
678
|
+
lookupNamespaceURI: ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string | null) => string | null) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string);
|
|
679
|
+
lookupPrefix: ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string | null) => string | null) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string);
|
|
680
|
+
normalize: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
681
|
+
removeChild: (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T extends Node>(child: T) => T) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3);
|
|
682
|
+
replaceChild: (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T extends Node>(node: Node, child: T) => T) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4);
|
|
683
|
+
readonly ELEMENT_NODE: 1;
|
|
684
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
685
|
+
readonly TEXT_NODE: 3;
|
|
686
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
687
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
688
|
+
readonly ENTITY_NODE: 6;
|
|
689
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
690
|
+
readonly COMMENT_NODE: 8;
|
|
691
|
+
readonly DOCUMENT_NODE: 9;
|
|
692
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
693
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
694
|
+
readonly NOTATION_NODE: 12;
|
|
695
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
696
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
697
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
698
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
699
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
700
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
701
|
+
dispatchEvent: ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean) & ((event: Event) => boolean);
|
|
702
|
+
ariaAtomic: string | null;
|
|
703
|
+
ariaAutoComplete: string | null;
|
|
704
|
+
ariaBusy: string | null;
|
|
705
|
+
ariaChecked: string | null;
|
|
706
|
+
ariaColCount: string | null;
|
|
707
|
+
ariaColIndex: string | null;
|
|
708
|
+
ariaColSpan: string | null;
|
|
709
|
+
ariaCurrent: string | null;
|
|
710
|
+
ariaDescription: string | null;
|
|
711
|
+
ariaDisabled: string | null;
|
|
712
|
+
ariaExpanded: string | null;
|
|
713
|
+
ariaHasPopup: string | null;
|
|
714
|
+
ariaHidden: string | null;
|
|
715
|
+
ariaInvalid: string | null;
|
|
716
|
+
ariaKeyShortcuts: string | null;
|
|
717
|
+
ariaLabel: string | null;
|
|
718
|
+
ariaLevel: string | null;
|
|
719
|
+
ariaLive: string | null;
|
|
720
|
+
ariaModal: string | null;
|
|
721
|
+
ariaMultiLine: string | null;
|
|
722
|
+
ariaMultiSelectable: string | null;
|
|
723
|
+
ariaOrientation: string | null;
|
|
724
|
+
ariaPlaceholder: string | null;
|
|
725
|
+
ariaPosInSet: string | null;
|
|
726
|
+
ariaPressed: string | null;
|
|
727
|
+
ariaReadOnly: string | null;
|
|
728
|
+
ariaRequired: string | null;
|
|
729
|
+
ariaRoleDescription: string | null;
|
|
730
|
+
ariaRowCount: string | null;
|
|
731
|
+
ariaRowIndex: string | null;
|
|
732
|
+
ariaRowSpan: string | null;
|
|
733
|
+
ariaSelected: string | null;
|
|
734
|
+
ariaSetSize: string | null;
|
|
735
|
+
ariaSort: string | null;
|
|
736
|
+
ariaValueMax: string | null;
|
|
737
|
+
ariaValueMin: string | null;
|
|
738
|
+
ariaValueNow: string | null;
|
|
739
|
+
ariaValueText: string | null;
|
|
740
|
+
role: string | null;
|
|
741
|
+
animate: ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation);
|
|
742
|
+
getAnimations: ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]);
|
|
743
|
+
after: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
744
|
+
before: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
745
|
+
remove: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
746
|
+
replaceWith: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
747
|
+
innerHTML: string;
|
|
748
|
+
readonly nextElementSibling: Element | null;
|
|
749
|
+
readonly previousElementSibling: Element | null;
|
|
750
|
+
readonly childElementCount: number;
|
|
751
|
+
readonly children: HTMLCollection;
|
|
752
|
+
readonly firstElementChild: Element | null;
|
|
753
|
+
readonly lastElementChild: Element | null;
|
|
754
|
+
append: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
755
|
+
prepend: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
756
|
+
querySelector: {
|
|
757
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
758
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
759
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
760
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
761
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
762
|
+
} & {
|
|
763
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
764
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
765
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
766
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
767
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
768
|
+
} & {
|
|
769
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
770
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
771
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
772
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
773
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
774
|
+
} & {
|
|
775
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
776
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
777
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
778
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
779
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
780
|
+
} & {
|
|
781
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
782
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
783
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
784
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
785
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
786
|
+
} & {
|
|
787
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
788
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
789
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
790
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
791
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
792
|
+
} & {
|
|
793
|
+
<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
794
|
+
<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
795
|
+
<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
796
|
+
<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
797
|
+
<E extends Element = Element>(selectors: string): E | null;
|
|
798
|
+
} & {
|
|
799
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
800
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
801
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
802
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
803
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
804
|
+
} & {
|
|
805
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
806
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
807
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
808
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
809
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
810
|
+
} & {
|
|
811
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
812
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
813
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
814
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
815
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
816
|
+
} & {
|
|
817
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
818
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
819
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
820
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
821
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
822
|
+
} & {
|
|
823
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
824
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
825
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
826
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
827
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
828
|
+
} & {
|
|
829
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
830
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
831
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
832
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
833
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
834
|
+
} & {
|
|
835
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
836
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
837
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
838
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
839
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
840
|
+
} & {
|
|
841
|
+
<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
842
|
+
<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
843
|
+
<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
844
|
+
<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
845
|
+
<E_1 extends Element = Element>(selectors: string): E_1;
|
|
846
|
+
};
|
|
847
|
+
querySelectorAll: {
|
|
848
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
849
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
850
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
851
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
852
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
853
|
+
} & {
|
|
854
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
855
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
856
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
857
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
858
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
859
|
+
} & {
|
|
860
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
861
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
862
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
863
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
864
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
865
|
+
} & {
|
|
866
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
867
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
868
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
869
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
870
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
871
|
+
} & {
|
|
872
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
873
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
874
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
875
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
876
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
877
|
+
} & {
|
|
878
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
879
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
880
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
881
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
882
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
883
|
+
} & {
|
|
884
|
+
<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
885
|
+
<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
886
|
+
<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
887
|
+
<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
888
|
+
<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
889
|
+
} & {
|
|
890
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
891
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
892
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
893
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
894
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
895
|
+
} & {
|
|
896
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
897
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
898
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
899
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
900
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
901
|
+
} & {
|
|
902
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
903
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
904
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
905
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
906
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
907
|
+
} & {
|
|
908
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
909
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
910
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
911
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
912
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
913
|
+
} & {
|
|
914
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
915
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
916
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
917
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
918
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
919
|
+
} & {
|
|
920
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
921
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
922
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
923
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
924
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
925
|
+
} & {
|
|
926
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
927
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
928
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
929
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
930
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
931
|
+
} & {
|
|
932
|
+
<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
933
|
+
<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
934
|
+
<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
935
|
+
<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
936
|
+
<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
937
|
+
};
|
|
938
|
+
replaceChildren: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
939
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
940
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
941
|
+
readonly style: CSSStyleDeclaration;
|
|
942
|
+
contentEditable: string;
|
|
943
|
+
enterKeyHint: string;
|
|
944
|
+
inputMode: string;
|
|
945
|
+
readonly isContentEditable: boolean;
|
|
946
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
|
|
947
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
948
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
949
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
950
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
951
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
952
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any);
|
|
953
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
954
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any);
|
|
955
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
956
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
957
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
958
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
959
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
960
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
961
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
962
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
963
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
964
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
965
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
966
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
967
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
968
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
969
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
970
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
971
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
972
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
973
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
974
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
975
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
976
|
+
onerror: OnErrorEventHandler;
|
|
977
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any);
|
|
978
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any);
|
|
979
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
980
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
981
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
982
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
983
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
984
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
985
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
986
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
987
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
988
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
989
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
990
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
991
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
992
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
993
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
994
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
995
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
996
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
997
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
998
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
999
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1000
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1001
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1002
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1003
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1004
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1005
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1006
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1007
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1008
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1009
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any);
|
|
1010
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1011
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1012
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
|
|
1013
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1014
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1015
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any);
|
|
1016
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1017
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1018
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1019
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1020
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1021
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1022
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1023
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any);
|
|
1024
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1025
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1026
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1027
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1028
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1029
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1030
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1031
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1032
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1033
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1034
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1035
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1036
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1037
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1038
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1039
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1040
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1041
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any);
|
|
1042
|
+
autofocus: boolean;
|
|
1043
|
+
readonly dataset: DOMStringMap;
|
|
1044
|
+
nonce: string;
|
|
1045
|
+
tabIndex: number;
|
|
1046
|
+
blur: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1047
|
+
focus: ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void);
|
|
1048
|
+
readonly config: Promise<_descope_sdk_mixins.Config>;
|
|
1049
|
+
"__#29612@#configCacheClear": (() => void) & (() => void) & (() => void) & (() => void);
|
|
1050
|
+
"__#29612@#_configResource": Promise<_descope_sdk_mixins.Config>;
|
|
1051
|
+
"__#29612@#fetchConfig": (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>);
|
|
1052
|
+
"__#29607@#isInit": boolean;
|
|
1053
|
+
"__#29611@#callbacks": Map<string, () => void> & Map<string, () => void> & Map<string, () => void> & Map<string, () => void>;
|
|
1054
|
+
onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
|
|
1055
|
+
reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
|
|
1056
|
+
"__#29609@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string | null) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
|
|
1057
|
+
"__#29608@#observeMappings": {} & {} & {};
|
|
1058
|
+
observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string | null) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
|
|
1059
|
+
observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string | null) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
|
|
1060
|
+
"__#29610@#lastBaseUrl"?: string;
|
|
1061
|
+
"__#29610@#workingBaseUrl"?: string;
|
|
1062
|
+
"__#29610@#getResourceUrls": ((filename: string) => (URL & {
|
|
1063
|
+
baseUrl: string;
|
|
1064
|
+
}) | (URL & {
|
|
1065
|
+
baseUrl: string;
|
|
1066
|
+
})[]) & ((filename: string) => (URL & {
|
|
1067
|
+
baseUrl: string;
|
|
1068
|
+
})[] | (URL & {
|
|
1069
|
+
baseUrl: string;
|
|
1070
|
+
})) & ((filename: string) => (URL & {
|
|
1071
|
+
baseUrl: string;
|
|
1072
|
+
}) | (URL & {
|
|
1073
|
+
baseUrl: string;
|
|
1074
|
+
})[]) & ((filename: string) => (URL & {
|
|
1075
|
+
baseUrl: string;
|
|
1076
|
+
}) | (URL & {
|
|
1077
|
+
baseUrl: string;
|
|
1078
|
+
})[]) & ((filename: string) => (URL & {
|
|
1079
|
+
baseUrl: string;
|
|
1080
|
+
}) | (URL & {
|
|
1081
|
+
baseUrl: string;
|
|
1082
|
+
})[]) & ((filename: string) => (URL & {
|
|
1083
|
+
baseUrl: string;
|
|
1084
|
+
}) | (URL & {
|
|
1085
|
+
baseUrl: string;
|
|
1086
|
+
})[]);
|
|
1087
|
+
fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
|
|
1088
|
+
body: F extends "json" ? Record<string, any> : string;
|
|
1089
|
+
headers: Record<string, string>;
|
|
1090
|
+
}>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
|
|
1091
|
+
body: F extends "json" ? Record<string, any> : string;
|
|
1092
|
+
headers: Record<string, string>;
|
|
1093
|
+
}>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
|
|
1094
|
+
body: F extends "json" ? Record<string, any> : string;
|
|
1095
|
+
headers: Record<string, string>;
|
|
1096
|
+
}>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
|
|
1097
|
+
body: F extends "json" ? Record<string, any> : string;
|
|
1098
|
+
headers: Record<string, string>;
|
|
1099
|
+
}>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
|
|
1100
|
+
body: F_1 extends "json" ? Record<string, any> : string;
|
|
1101
|
+
headers: Record<string, string>;
|
|
1102
|
+
}>) & (<F_2 extends "text" | "json">(filename: string, format: F_2) => Promise<{
|
|
1103
|
+
body: F_2 extends "json" ? Record<string, any> : string;
|
|
1104
|
+
headers: Record<string, string>;
|
|
1105
|
+
}>);
|
|
1106
|
+
readonly baseStaticUrl: string;
|
|
1107
|
+
readonly baseUrl: string;
|
|
1108
|
+
readonly projectId: string;
|
|
1109
|
+
contentRootElement: HTMLElement;
|
|
1110
|
+
rootElement: HTMLElement;
|
|
1111
|
+
injectStyle: ((cssString: string, { prepend }?: {
|
|
1112
|
+
prepend?: boolean;
|
|
1113
|
+
}) => {
|
|
1114
|
+
styleEle: HTMLStyleElement;
|
|
1115
|
+
ref: HTMLElement | ShadowRoot;
|
|
1116
|
+
replaceSync(cssString: string): void;
|
|
1117
|
+
readonly cssRules: CSSRuleList;
|
|
1118
|
+
} | CSSStyleSheet) & ((cssString: string, { prepend }?: {
|
|
1119
|
+
prepend?: boolean;
|
|
1120
|
+
}) => {
|
|
1121
|
+
styleEle: HTMLStyleElement;
|
|
1122
|
+
ref: HTMLElement | ShadowRoot;
|
|
1123
|
+
replaceSync(cssString: string): void;
|
|
1124
|
+
readonly cssRules: CSSRuleList;
|
|
1125
|
+
} | CSSStyleSheet) & ((cssString: string, { prepend }?: {
|
|
1126
|
+
prepend?: boolean;
|
|
1127
|
+
}) => {
|
|
1128
|
+
styleEle: HTMLStyleElement;
|
|
1129
|
+
ref: HTMLElement | ShadowRoot;
|
|
1130
|
+
replaceSync(cssString: string): void;
|
|
1131
|
+
readonly cssRules: CSSRuleList;
|
|
1132
|
+
} | CSSStyleSheet) & ((cssString: string, { prepend }?: {
|
|
1133
|
+
prepend?: boolean;
|
|
1134
|
+
}) => {
|
|
1135
|
+
styleEle: HTMLStyleElement;
|
|
1136
|
+
ref: HTMLElement | ShadowRoot;
|
|
1137
|
+
replaceSync(cssString: string): void;
|
|
1138
|
+
readonly cssRules: CSSRuleList;
|
|
1139
|
+
} | CSSStyleSheet);
|
|
1140
|
+
"__#29613@#setNonce": (() => void) & (() => void) & (() => void) & (() => void);
|
|
1141
|
+
readonly refreshCookieName: string;
|
|
1142
|
+
"__#7@#initWidgetRoot": (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
|
|
1143
|
+
state: State;
|
|
1144
|
+
"__#5@#api": Sdk;
|
|
1145
|
+
"__#5@#createSdk": (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1146
|
+
readonly widgetId: string;
|
|
1147
|
+
readonly tenantId: string;
|
|
1148
|
+
readonly mock: string;
|
|
1149
|
+
readonly api: {
|
|
1150
|
+
user: {
|
|
1151
|
+
me: () => Promise<any>;
|
|
1152
|
+
};
|
|
1153
|
+
tenant: {
|
|
1154
|
+
details: () => Promise<any>;
|
|
1155
|
+
adminLinkSso: () => Promise<any>;
|
|
1156
|
+
};
|
|
1157
|
+
};
|
|
1158
|
+
writingSuggestions: string;
|
|
1159
|
+
readonly currentCSSZoom: number;
|
|
1160
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
1161
|
+
setHTMLUnsafe(html: string): void;
|
|
1162
|
+
ariaBrailleLabel: string | null;
|
|
1163
|
+
ariaBrailleRoleDescription: string | null;
|
|
1164
|
+
ariaColIndexText: string | null;
|
|
1165
|
+
ariaRowIndexText: string | null;
|
|
1166
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1167
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1168
|
+
actions: _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1169
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1170
|
+
extra: {
|
|
1171
|
+
api: Sdk;
|
|
1172
|
+
};
|
|
1173
|
+
state?: unknown;
|
|
1174
|
+
dispatch?: redux.Dispatch;
|
|
1175
|
+
rejectValue?: unknown;
|
|
1176
|
+
serializedErrorType?: unknown;
|
|
1177
|
+
pendingMeta?: unknown;
|
|
1178
|
+
fulfilledMeta?: unknown;
|
|
1179
|
+
rejectedMeta?: unknown;
|
|
1180
|
+
}>;
|
|
1181
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1182
|
+
extra: {
|
|
1183
|
+
api: Sdk;
|
|
1184
|
+
};
|
|
1185
|
+
state?: unknown;
|
|
1186
|
+
dispatch?: redux.Dispatch;
|
|
1187
|
+
rejectValue?: unknown;
|
|
1188
|
+
serializedErrorType?: unknown;
|
|
1189
|
+
pendingMeta?: unknown;
|
|
1190
|
+
fulfilledMeta?: unknown;
|
|
1191
|
+
rejectedMeta?: unknown;
|
|
1192
|
+
}>;
|
|
1193
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1194
|
+
extra: {
|
|
1195
|
+
api: Sdk;
|
|
1196
|
+
};
|
|
1197
|
+
state?: unknown;
|
|
1198
|
+
dispatch?: redux.Dispatch;
|
|
1199
|
+
rejectValue?: unknown;
|
|
1200
|
+
serializedErrorType?: unknown;
|
|
1201
|
+
pendingMeta?: unknown;
|
|
1202
|
+
fulfilledMeta?: unknown;
|
|
1203
|
+
rejectedMeta?: unknown;
|
|
1204
|
+
}>;
|
|
1205
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1206
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1207
|
+
extra: {
|
|
1208
|
+
api: Sdk;
|
|
1209
|
+
};
|
|
1210
|
+
state?: unknown;
|
|
1211
|
+
dispatch?: redux.Dispatch;
|
|
1212
|
+
rejectValue?: unknown;
|
|
1213
|
+
serializedErrorType?: unknown;
|
|
1214
|
+
pendingMeta?: unknown;
|
|
1215
|
+
fulfilledMeta?: unknown;
|
|
1216
|
+
rejectedMeta?: unknown;
|
|
1217
|
+
}>;
|
|
1218
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1219
|
+
extra: {
|
|
1220
|
+
api: Sdk;
|
|
1221
|
+
};
|
|
1222
|
+
state?: unknown;
|
|
1223
|
+
dispatch?: redux.Dispatch;
|
|
1224
|
+
rejectValue?: unknown;
|
|
1225
|
+
serializedErrorType?: unknown;
|
|
1226
|
+
pendingMeta?: unknown;
|
|
1227
|
+
fulfilledMeta?: unknown;
|
|
1228
|
+
rejectedMeta?: unknown;
|
|
1229
|
+
}>;
|
|
1230
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1231
|
+
extra: {
|
|
1232
|
+
api: Sdk;
|
|
1233
|
+
};
|
|
1234
|
+
state?: unknown;
|
|
1235
|
+
dispatch?: redux.Dispatch;
|
|
1236
|
+
rejectValue?: unknown;
|
|
1237
|
+
serializedErrorType?: unknown;
|
|
1238
|
+
pendingMeta?: unknown;
|
|
1239
|
+
fulfilledMeta?: unknown;
|
|
1240
|
+
rejectedMeta?: unknown;
|
|
1241
|
+
}>;
|
|
1242
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1243
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1244
|
+
extra: {
|
|
1245
|
+
api: Sdk;
|
|
1246
|
+
};
|
|
1247
|
+
state?: unknown;
|
|
1248
|
+
dispatch?: redux.Dispatch;
|
|
1249
|
+
rejectValue?: unknown;
|
|
1250
|
+
serializedErrorType?: unknown;
|
|
1251
|
+
pendingMeta?: unknown;
|
|
1252
|
+
fulfilledMeta?: unknown;
|
|
1253
|
+
rejectedMeta?: unknown;
|
|
1254
|
+
}>;
|
|
1255
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1256
|
+
extra: {
|
|
1257
|
+
api: Sdk;
|
|
1258
|
+
};
|
|
1259
|
+
state?: unknown;
|
|
1260
|
+
dispatch?: redux.Dispatch;
|
|
1261
|
+
rejectValue?: unknown;
|
|
1262
|
+
serializedErrorType?: unknown;
|
|
1263
|
+
pendingMeta?: unknown;
|
|
1264
|
+
fulfilledMeta?: unknown;
|
|
1265
|
+
rejectedMeta?: unknown;
|
|
1266
|
+
}>;
|
|
1267
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1268
|
+
extra: {
|
|
1269
|
+
api: Sdk;
|
|
1270
|
+
};
|
|
1271
|
+
state?: unknown;
|
|
1272
|
+
dispatch?: redux.Dispatch;
|
|
1273
|
+
rejectValue?: unknown;
|
|
1274
|
+
serializedErrorType?: unknown;
|
|
1275
|
+
pendingMeta?: unknown;
|
|
1276
|
+
fulfilledMeta?: unknown;
|
|
1277
|
+
rejectedMeta?: unknown;
|
|
1278
|
+
}>;
|
|
1279
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1280
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1281
|
+
extra: {
|
|
1282
|
+
api: Sdk;
|
|
1283
|
+
};
|
|
1284
|
+
state?: unknown;
|
|
1285
|
+
dispatch?: redux.Dispatch;
|
|
1286
|
+
rejectValue?: unknown;
|
|
1287
|
+
serializedErrorType?: unknown;
|
|
1288
|
+
pendingMeta?: unknown;
|
|
1289
|
+
fulfilledMeta?: unknown;
|
|
1290
|
+
rejectedMeta?: unknown;
|
|
1291
|
+
}>;
|
|
1292
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1293
|
+
extra: {
|
|
1294
|
+
api: Sdk;
|
|
1295
|
+
};
|
|
1296
|
+
state?: unknown;
|
|
1297
|
+
dispatch?: redux.Dispatch;
|
|
1298
|
+
rejectValue?: unknown;
|
|
1299
|
+
serializedErrorType?: unknown;
|
|
1300
|
+
pendingMeta?: unknown;
|
|
1301
|
+
fulfilledMeta?: unknown;
|
|
1302
|
+
rejectedMeta?: unknown;
|
|
1303
|
+
}>;
|
|
1304
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1305
|
+
extra: {
|
|
1306
|
+
api: Sdk;
|
|
1307
|
+
};
|
|
1308
|
+
state?: unknown;
|
|
1309
|
+
dispatch?: redux.Dispatch;
|
|
1310
|
+
rejectValue?: unknown;
|
|
1311
|
+
serializedErrorType?: unknown;
|
|
1312
|
+
pendingMeta?: unknown;
|
|
1313
|
+
fulfilledMeta?: unknown;
|
|
1314
|
+
rejectedMeta?: unknown;
|
|
1315
|
+
}>;
|
|
1316
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1317
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1318
|
+
extra: {
|
|
1319
|
+
api: Sdk;
|
|
1320
|
+
};
|
|
1321
|
+
state?: unknown;
|
|
1322
|
+
dispatch?: redux.Dispatch;
|
|
1323
|
+
rejectValue?: unknown;
|
|
1324
|
+
serializedErrorType?: unknown;
|
|
1325
|
+
pendingMeta?: unknown;
|
|
1326
|
+
fulfilledMeta?: unknown;
|
|
1327
|
+
rejectedMeta?: unknown;
|
|
1328
|
+
}>;
|
|
1329
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1330
|
+
extra: {
|
|
1331
|
+
api: Sdk;
|
|
1332
|
+
};
|
|
1333
|
+
state?: unknown;
|
|
1334
|
+
dispatch?: redux.Dispatch;
|
|
1335
|
+
rejectValue?: unknown;
|
|
1336
|
+
serializedErrorType?: unknown;
|
|
1337
|
+
pendingMeta?: unknown;
|
|
1338
|
+
fulfilledMeta?: unknown;
|
|
1339
|
+
rejectedMeta?: unknown;
|
|
1340
|
+
}>;
|
|
1341
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1342
|
+
extra: {
|
|
1343
|
+
api: Sdk;
|
|
1344
|
+
};
|
|
1345
|
+
state?: unknown;
|
|
1346
|
+
dispatch?: redux.Dispatch;
|
|
1347
|
+
rejectValue?: unknown;
|
|
1348
|
+
serializedErrorType?: unknown;
|
|
1349
|
+
pendingMeta?: unknown;
|
|
1350
|
+
fulfilledMeta?: unknown;
|
|
1351
|
+
rejectedMeta?: unknown;
|
|
1352
|
+
}>;
|
|
1353
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1354
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1355
|
+
extra: {
|
|
1356
|
+
api: Sdk;
|
|
1357
|
+
};
|
|
1358
|
+
state?: unknown;
|
|
1359
|
+
dispatch?: redux.Dispatch;
|
|
1360
|
+
rejectValue?: unknown;
|
|
1361
|
+
serializedErrorType?: unknown;
|
|
1362
|
+
pendingMeta?: unknown;
|
|
1363
|
+
fulfilledMeta?: unknown;
|
|
1364
|
+
rejectedMeta?: unknown;
|
|
1365
|
+
}>;
|
|
1366
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1367
|
+
extra: {
|
|
1368
|
+
api: Sdk;
|
|
1369
|
+
};
|
|
1370
|
+
state?: unknown;
|
|
1371
|
+
dispatch?: redux.Dispatch;
|
|
1372
|
+
rejectValue?: unknown;
|
|
1373
|
+
serializedErrorType?: unknown;
|
|
1374
|
+
pendingMeta?: unknown;
|
|
1375
|
+
fulfilledMeta?: unknown;
|
|
1376
|
+
rejectedMeta?: unknown;
|
|
1377
|
+
}>;
|
|
1378
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1379
|
+
extra: {
|
|
1380
|
+
api: Sdk;
|
|
1381
|
+
};
|
|
1382
|
+
state?: unknown;
|
|
1383
|
+
dispatch?: redux.Dispatch;
|
|
1384
|
+
rejectValue?: unknown;
|
|
1385
|
+
serializedErrorType?: unknown;
|
|
1386
|
+
pendingMeta?: unknown;
|
|
1387
|
+
fulfilledMeta?: unknown;
|
|
1388
|
+
rejectedMeta?: unknown;
|
|
1389
|
+
}>;
|
|
1390
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1391
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1392
|
+
extra: {
|
|
1393
|
+
api: Sdk;
|
|
1394
|
+
};
|
|
1395
|
+
state?: unknown;
|
|
1396
|
+
dispatch?: redux.Dispatch;
|
|
1397
|
+
rejectValue?: unknown;
|
|
1398
|
+
serializedErrorType?: unknown;
|
|
1399
|
+
pendingMeta?: unknown;
|
|
1400
|
+
fulfilledMeta?: unknown;
|
|
1401
|
+
rejectedMeta?: unknown;
|
|
1402
|
+
}>;
|
|
1403
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1404
|
+
extra: {
|
|
1405
|
+
api: Sdk;
|
|
1406
|
+
};
|
|
1407
|
+
state?: unknown;
|
|
1408
|
+
dispatch?: redux.Dispatch;
|
|
1409
|
+
rejectValue?: unknown;
|
|
1410
|
+
serializedErrorType?: unknown;
|
|
1411
|
+
pendingMeta?: unknown;
|
|
1412
|
+
fulfilledMeta?: unknown;
|
|
1413
|
+
rejectedMeta?: unknown;
|
|
1414
|
+
}>;
|
|
1415
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1416
|
+
extra: {
|
|
1417
|
+
api: Sdk;
|
|
1418
|
+
};
|
|
1419
|
+
state?: unknown;
|
|
1420
|
+
dispatch?: redux.Dispatch;
|
|
1421
|
+
rejectValue?: unknown;
|
|
1422
|
+
serializedErrorType?: unknown;
|
|
1423
|
+
pendingMeta?: unknown;
|
|
1424
|
+
fulfilledMeta?: unknown;
|
|
1425
|
+
rejectedMeta?: unknown;
|
|
1426
|
+
}>;
|
|
1427
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1428
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1429
|
+
extra: {
|
|
1430
|
+
api: Sdk;
|
|
1431
|
+
};
|
|
1432
|
+
state?: unknown;
|
|
1433
|
+
dispatch?: redux.Dispatch;
|
|
1434
|
+
rejectValue?: unknown;
|
|
1435
|
+
serializedErrorType?: unknown;
|
|
1436
|
+
pendingMeta?: unknown;
|
|
1437
|
+
fulfilledMeta?: unknown;
|
|
1438
|
+
rejectedMeta?: unknown;
|
|
1439
|
+
}>;
|
|
1440
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1441
|
+
extra: {
|
|
1442
|
+
api: Sdk;
|
|
1443
|
+
};
|
|
1444
|
+
state?: unknown;
|
|
1445
|
+
dispatch?: redux.Dispatch;
|
|
1446
|
+
rejectValue?: unknown;
|
|
1447
|
+
serializedErrorType?: unknown;
|
|
1448
|
+
pendingMeta?: unknown;
|
|
1449
|
+
fulfilledMeta?: unknown;
|
|
1450
|
+
rejectedMeta?: unknown;
|
|
1451
|
+
}>;
|
|
1452
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1453
|
+
extra: {
|
|
1454
|
+
api: Sdk;
|
|
1455
|
+
};
|
|
1456
|
+
state?: unknown;
|
|
1457
|
+
dispatch?: redux.Dispatch;
|
|
1458
|
+
rejectValue?: unknown;
|
|
1459
|
+
serializedErrorType?: unknown;
|
|
1460
|
+
pendingMeta?: unknown;
|
|
1461
|
+
fulfilledMeta?: unknown;
|
|
1462
|
+
rejectedMeta?: unknown;
|
|
1463
|
+
}>;
|
|
1464
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1465
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1466
|
+
extra: {
|
|
1467
|
+
api: Sdk;
|
|
1468
|
+
};
|
|
1469
|
+
state?: unknown;
|
|
1470
|
+
dispatch?: redux.Dispatch;
|
|
1471
|
+
rejectValue?: unknown;
|
|
1472
|
+
serializedErrorType?: unknown;
|
|
1473
|
+
pendingMeta?: unknown;
|
|
1474
|
+
fulfilledMeta?: unknown;
|
|
1475
|
+
rejectedMeta?: unknown;
|
|
1476
|
+
}>;
|
|
1477
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1478
|
+
extra: {
|
|
1479
|
+
api: Sdk;
|
|
1480
|
+
};
|
|
1481
|
+
state?: unknown;
|
|
1482
|
+
dispatch?: redux.Dispatch;
|
|
1483
|
+
rejectValue?: unknown;
|
|
1484
|
+
serializedErrorType?: unknown;
|
|
1485
|
+
pendingMeta?: unknown;
|
|
1486
|
+
fulfilledMeta?: unknown;
|
|
1487
|
+
rejectedMeta?: unknown;
|
|
1488
|
+
}>;
|
|
1489
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1490
|
+
extra: {
|
|
1491
|
+
api: Sdk;
|
|
1492
|
+
};
|
|
1493
|
+
state?: unknown;
|
|
1494
|
+
dispatch?: redux.Dispatch;
|
|
1495
|
+
rejectValue?: unknown;
|
|
1496
|
+
serializedErrorType?: unknown;
|
|
1497
|
+
pendingMeta?: unknown;
|
|
1498
|
+
fulfilledMeta?: unknown;
|
|
1499
|
+
rejectedMeta?: unknown;
|
|
1500
|
+
}>;
|
|
1501
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1502
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1503
|
+
extra: {
|
|
1504
|
+
api: Sdk;
|
|
1505
|
+
};
|
|
1506
|
+
state?: unknown;
|
|
1507
|
+
dispatch?: redux.Dispatch;
|
|
1508
|
+
rejectValue?: unknown;
|
|
1509
|
+
serializedErrorType?: unknown;
|
|
1510
|
+
pendingMeta?: unknown;
|
|
1511
|
+
fulfilledMeta?: unknown;
|
|
1512
|
+
rejectedMeta?: unknown;
|
|
1513
|
+
}>;
|
|
1514
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1515
|
+
extra: {
|
|
1516
|
+
api: Sdk;
|
|
1517
|
+
};
|
|
1518
|
+
state?: unknown;
|
|
1519
|
+
dispatch?: redux.Dispatch;
|
|
1520
|
+
rejectValue?: unknown;
|
|
1521
|
+
serializedErrorType?: unknown;
|
|
1522
|
+
pendingMeta?: unknown;
|
|
1523
|
+
fulfilledMeta?: unknown;
|
|
1524
|
+
rejectedMeta?: unknown;
|
|
1525
|
+
}>;
|
|
1526
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1527
|
+
extra: {
|
|
1528
|
+
api: Sdk;
|
|
1529
|
+
};
|
|
1530
|
+
state?: unknown;
|
|
1531
|
+
dispatch?: redux.Dispatch;
|
|
1532
|
+
rejectValue?: unknown;
|
|
1533
|
+
serializedErrorType?: unknown;
|
|
1534
|
+
pendingMeta?: unknown;
|
|
1535
|
+
fulfilledMeta?: unknown;
|
|
1536
|
+
rejectedMeta?: unknown;
|
|
1537
|
+
}>;
|
|
1538
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1539
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1540
|
+
extra: {
|
|
1541
|
+
api: Sdk;
|
|
1542
|
+
};
|
|
1543
|
+
state?: unknown;
|
|
1544
|
+
dispatch?: redux.Dispatch;
|
|
1545
|
+
rejectValue?: unknown;
|
|
1546
|
+
serializedErrorType?: unknown;
|
|
1547
|
+
pendingMeta?: unknown;
|
|
1548
|
+
fulfilledMeta?: unknown;
|
|
1549
|
+
rejectedMeta?: unknown;
|
|
1550
|
+
}>;
|
|
1551
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1552
|
+
extra: {
|
|
1553
|
+
api: Sdk;
|
|
1554
|
+
};
|
|
1555
|
+
state?: unknown;
|
|
1556
|
+
dispatch?: redux.Dispatch;
|
|
1557
|
+
rejectValue?: unknown;
|
|
1558
|
+
serializedErrorType?: unknown;
|
|
1559
|
+
pendingMeta?: unknown;
|
|
1560
|
+
fulfilledMeta?: unknown;
|
|
1561
|
+
rejectedMeta?: unknown;
|
|
1562
|
+
}>;
|
|
1563
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1564
|
+
extra: {
|
|
1565
|
+
api: Sdk;
|
|
1566
|
+
};
|
|
1567
|
+
state?: unknown;
|
|
1568
|
+
dispatch?: redux.Dispatch;
|
|
1569
|
+
rejectValue?: unknown;
|
|
1570
|
+
serializedErrorType?: unknown;
|
|
1571
|
+
pendingMeta?: unknown;
|
|
1572
|
+
fulfilledMeta?: unknown;
|
|
1573
|
+
rejectedMeta?: unknown;
|
|
1574
|
+
}>;
|
|
1575
|
+
} & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
|
|
1576
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1577
|
+
extra: {
|
|
1578
|
+
api: Sdk;
|
|
1579
|
+
};
|
|
1580
|
+
state?: unknown;
|
|
1581
|
+
dispatch?: redux.Dispatch;
|
|
1582
|
+
rejectValue?: unknown;
|
|
1583
|
+
serializedErrorType?: unknown;
|
|
1584
|
+
pendingMeta?: unknown;
|
|
1585
|
+
fulfilledMeta?: unknown;
|
|
1586
|
+
rejectedMeta?: unknown;
|
|
1587
|
+
}>;
|
|
1588
|
+
getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1589
|
+
extra: {
|
|
1590
|
+
api: Sdk;
|
|
1591
|
+
};
|
|
1592
|
+
state?: unknown;
|
|
1593
|
+
dispatch?: redux.Dispatch;
|
|
1594
|
+
rejectValue?: unknown;
|
|
1595
|
+
serializedErrorType?: unknown;
|
|
1596
|
+
pendingMeta?: unknown;
|
|
1597
|
+
fulfilledMeta?: unknown;
|
|
1598
|
+
rejectedMeta?: unknown;
|
|
1599
|
+
}>;
|
|
1600
|
+
getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1601
|
+
extra: {
|
|
1602
|
+
api: Sdk;
|
|
1603
|
+
};
|
|
1604
|
+
state?: unknown;
|
|
1605
|
+
dispatch?: redux.Dispatch;
|
|
1606
|
+
rejectValue?: unknown;
|
|
1607
|
+
serializedErrorType?: unknown;
|
|
1608
|
+
pendingMeta?: unknown;
|
|
1609
|
+
fulfilledMeta?: unknown;
|
|
1610
|
+
rejectedMeta?: unknown;
|
|
1611
|
+
}>;
|
|
1612
|
+
};
|
|
1613
|
+
subscribe: <SelectorR = State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => redux.Unsubscribe;
|
|
1614
|
+
fetchWidgetPage: ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>);
|
|
1615
|
+
syncFlowTheme: ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void);
|
|
1616
|
+
"__#29622@#globalStyle": _descope_sdk_mixins.InjectedStyle;
|
|
1617
|
+
readonly theme: _descope_sdk_mixins.ThemeOptions;
|
|
1618
|
+
readonly styleId: string;
|
|
1619
|
+
"__#29622@#_themeResource": Promise<void | Record<string, any>>;
|
|
1620
|
+
"__#29622@#fetchTheme"(): Promise<Record<string, any>>;
|
|
1621
|
+
readonly "__#29622@#themeResource": Promise<void | Record<string, any>>;
|
|
1622
|
+
"__#29622@#loadGlobalStyle"(): Promise<void>;
|
|
1623
|
+
"__#29622@#loadComponentsStyle"(): Promise<void>;
|
|
1624
|
+
"__#29622@#getFontsConfig"(): Promise<Record<string, {
|
|
1625
|
+
url?: string;
|
|
1626
|
+
}>>;
|
|
1627
|
+
"__#29622@#loadFonts"(): Promise<void>;
|
|
1628
|
+
"__#29622@#applyTheme"(): Promise<void>;
|
|
1629
|
+
"__#29622@#onThemeChange": () => void;
|
|
1630
|
+
"__#29622@#loadTheme"(): void;
|
|
1631
|
+
"__#29622@#toggleOsThemeChangeListener": (listen: boolean) => void;
|
|
1632
|
+
"__#9@#editModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
|
|
1633
|
+
"__#9@#editFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
|
|
1634
|
+
"__#9@#deleteModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
|
|
1635
|
+
"__#9@#deleteFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
|
|
1636
|
+
"__#9@#initEditModalContent"(flowId: string, type: string, attName: string, value: any): void;
|
|
1637
|
+
"__#9@#initDeleteModalContent"(flowId: string): void;
|
|
1638
|
+
"__#9@#updateCustomValueTenantAttrs": (tenantCustomAttributes: any) => void;
|
|
1639
|
+
"__#9@#initEditFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver, type: string, attName: string, val: string): void;
|
|
1640
|
+
"__#9@#initDeleteFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
|
|
1641
|
+
tenantEnforceSSODriver: _descope_sdk_component_drivers.UserAttributeDriver;
|
|
1642
|
+
"__#11@#editModal": _descope_sdk_component_drivers.ModalDriver;
|
|
1643
|
+
"__#11@#editFlow": _descope_sdk_component_drivers.FlowDriver;
|
|
1644
|
+
"__#11@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
|
|
1645
|
+
"__#11@#deleteFlow": _descope_sdk_component_drivers.FlowDriver;
|
|
1646
|
+
"__#11@#initEditModal"(): void;
|
|
1647
|
+
"__#11@#initEditModalContent"(): void;
|
|
1648
|
+
"__#11@#initDeleteModal"(): void;
|
|
1649
|
+
"__#11@#initDeleteModalContent"(): void;
|
|
1650
|
+
"__#11@#initTenantEnforceSSO"(): void;
|
|
1651
|
+
"__#11@#onValueUpdate": (tenantEnforceSSO: any) => void;
|
|
1652
|
+
tenantEmailDomainsDriver: _descope_sdk_component_drivers.UserAttributeDriver;
|
|
1653
|
+
"__#10@#editModal": _descope_sdk_component_drivers.ModalDriver;
|
|
1654
|
+
"__#10@#editFlow": _descope_sdk_component_drivers.FlowDriver;
|
|
1655
|
+
"__#10@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
|
|
1656
|
+
"__#10@#deleteFlow": _descope_sdk_component_drivers.FlowDriver;
|
|
1657
|
+
"__#10@#initEditModal"(): void;
|
|
1658
|
+
"__#10@#initEditModalContent"(): void;
|
|
1659
|
+
"__#10@#initDeleteModal"(): void;
|
|
1660
|
+
"__#10@#initDeleteModalContent"(): void;
|
|
1661
|
+
"__#10@#initTenantEmailDomains"(): void;
|
|
1662
|
+
"__#10@#onValueUpdate": (tenantEmailDomains: any) => void;
|
|
1663
|
+
tenantNameDriver: _descope_sdk_component_drivers.UserAttributeDriver;
|
|
1664
|
+
"__#12@#editModal": _descope_sdk_component_drivers.ModalDriver;
|
|
1665
|
+
"__#12@#editFlow": _descope_sdk_component_drivers.FlowDriver;
|
|
1666
|
+
"__#12@#initEditModal"(): void;
|
|
1667
|
+
"__#12@#initEditModalContent"(): void;
|
|
1668
|
+
"__#12@#initTenantName"(): void;
|
|
1669
|
+
"__#12@#onValueUpdate": (tenantName: any) => void;
|
|
1670
|
+
"__#6@#createFlowRedirectModal"(widgetFlow: string): void;
|
|
1671
|
+
"__#29615@#debuggerEle": (HTMLElement & {
|
|
1672
|
+
updateData: (data: {
|
|
1673
|
+
title: string;
|
|
1674
|
+
description?: string;
|
|
1675
|
+
} | {
|
|
1676
|
+
title: string;
|
|
1677
|
+
description?: string;
|
|
1678
|
+
}[]) => void;
|
|
1679
|
+
}) | null;
|
|
1680
|
+
"__#29615@#disableDebugger"(): void;
|
|
1681
|
+
"__#29615@#enableDebugger"(): Promise<void>;
|
|
1682
|
+
readonly debug: boolean;
|
|
1683
|
+
"__#29615@#handleDebugMode"(): void;
|
|
1684
|
+
"__#29615@#updateDebuggerMessages"(title: string, description: string): void;
|
|
1685
|
+
};
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1688
|
+
declare global {
|
|
1689
|
+
interface HTMLElement {
|
|
1690
|
+
attributeChangedCallback(attrName: string, oldValue: string | null, newValue: string | null): void;
|
|
1691
|
+
connectedCallback(): void;
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
export { TenantProfileWidget as default };
|