@descope/user-profile-widget 0.6.22 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2037 -321
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,41 +1,48 @@
|
|
|
1
|
+
import * as _descope_sdk_component_drivers from '@descope/sdk-component-drivers';
|
|
1
2
|
import * as redux from 'redux';
|
|
2
3
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
3
4
|
import * as _descope_core_js_sdk from '@descope/core-js-sdk';
|
|
4
5
|
import * as _descope_sdk_mixins from '@descope/sdk-mixins';
|
|
5
|
-
import * as _descope_sdk_component_drivers from '@descope/sdk-component-drivers';
|
|
6
6
|
|
|
7
|
+
type Device = {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
deviceType: 'desktop' | 'mobile' | 'tablet' | 'unknown';
|
|
11
|
+
isCurrentDevice: boolean;
|
|
12
|
+
lastLoginTime: string;
|
|
13
|
+
};
|
|
7
14
|
type State = {
|
|
8
15
|
me: {
|
|
9
16
|
loading: boolean;
|
|
10
17
|
error: unknown;
|
|
11
18
|
data: Record<string, any>;
|
|
12
19
|
};
|
|
20
|
+
devices: {
|
|
21
|
+
loading: boolean;
|
|
22
|
+
error: unknown;
|
|
23
|
+
data: Device[];
|
|
24
|
+
};
|
|
25
|
+
notifications: Notification[];
|
|
26
|
+
};
|
|
27
|
+
type Notification = {
|
|
28
|
+
type: 'success' | 'error';
|
|
29
|
+
msg: string;
|
|
13
30
|
};
|
|
14
31
|
|
|
15
32
|
declare const UserProfileWidget: {
|
|
16
33
|
new (...params: any[]): {
|
|
17
34
|
init(): Promise<void>;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
warn(...data: any[]): void;
|
|
25
|
-
info(...data: any[]): void;
|
|
26
|
-
debug(...data: any[]): void;
|
|
27
|
-
};
|
|
28
|
-
}) => {
|
|
29
|
-
setContent(template: HTMLTemplateElement): void;
|
|
30
|
-
"__#29653@#private": any;
|
|
31
|
-
beforeOpen: () => void | Promise<void>;
|
|
32
|
-
afterClose: () => void;
|
|
35
|
+
"__#19@#createNotificationContent"({ type, msg }: {
|
|
36
|
+
type: "success" | "error";
|
|
37
|
+
msg: string;
|
|
38
|
+
}): string;
|
|
39
|
+
"__#19@#createNotification"(type: "success" | "error"): {
|
|
40
|
+
setContent(templateOrString: string | HTMLTemplateElement): void;
|
|
33
41
|
nodeName: string;
|
|
34
42
|
close(): void;
|
|
35
|
-
|
|
36
|
-
reset(): void;
|
|
43
|
+
show(): void;
|
|
37
44
|
remove(): void;
|
|
38
|
-
"__#
|
|
45
|
+
"__#29687@#private": any;
|
|
39
46
|
logger: {
|
|
40
47
|
error(...data: any[]): void;
|
|
41
48
|
warn(...data: any[]): void;
|
|
@@ -45,28 +52,15 @@ declare const UserProfileWidget: {
|
|
|
45
52
|
readonly asyncEle: Promise<Element>;
|
|
46
53
|
readonly ele: Element;
|
|
47
54
|
};
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"__#
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
id: string;
|
|
58
|
-
url: URL;
|
|
59
|
-
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
60
|
-
id: string;
|
|
61
|
-
url: URL;
|
|
62
|
-
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
63
|
-
id: string;
|
|
64
|
-
url: URL;
|
|
65
|
-
}>);
|
|
66
|
-
"__#29640@#logger": _descope_sdk_mixins.Logger;
|
|
67
|
-
"__#29640@#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);
|
|
68
|
-
logger: _descope_sdk_mixins.Logger;
|
|
69
|
-
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: "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: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", args: any[]) => void);
|
|
55
|
+
"__#19@#onNotificationsUpdate": (notifications: {
|
|
56
|
+
type: "success" | "error";
|
|
57
|
+
msg: string;
|
|
58
|
+
}[]) => void;
|
|
59
|
+
"__#29677@#isInit": boolean;
|
|
60
|
+
connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & {
|
|
61
|
+
(): void;
|
|
62
|
+
(): void;
|
|
63
|
+
} & (() => 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) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
70
64
|
accessKey: string;
|
|
71
65
|
readonly accessKeyLabel: string;
|
|
72
66
|
autocapitalize: string;
|
|
@@ -86,11 +80,11 @@ declare const UserProfileWidget: {
|
|
|
86
80
|
spellcheck: boolean;
|
|
87
81
|
title: string;
|
|
88
82
|
translate: boolean;
|
|
89
|
-
attachInternals: (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals);
|
|
90
|
-
click: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
91
|
-
hidePopover: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
92
|
-
showPopover: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
93
|
-
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);
|
|
83
|
+
attachInternals: (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals) & (() => ElementInternals);
|
|
84
|
+
click: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
85
|
+
hidePopover: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
86
|
+
showPopover: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
87
|
+
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) & ((force?: boolean) => boolean);
|
|
94
88
|
addEventListener: {
|
|
95
89
|
<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
96
90
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -136,6 +130,9 @@ declare const UserProfileWidget: {
|
|
|
136
130
|
} & {
|
|
137
131
|
<K_14 extends keyof HTMLElementEventMap>(type: K_14, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_14]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
138
132
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
133
|
+
} & {
|
|
134
|
+
<K_15 extends keyof HTMLElementEventMap>(type: K_15, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_15]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
135
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
139
136
|
};
|
|
140
137
|
removeEventListener: {
|
|
141
138
|
<K_1_1 extends keyof HTMLElementEventMap>(type: K_1_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -156,10 +153,10 @@ declare const UserProfileWidget: {
|
|
|
156
153
|
<K_1_6 extends keyof HTMLElementEventMap>(type: K_1_6, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_6]) => any, options?: boolean | EventListenerOptions): void;
|
|
157
154
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
158
155
|
} & {
|
|
159
|
-
<
|
|
156
|
+
<K_1_7 extends keyof HTMLElementEventMap>(type: K_1_7, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_7]) => any, options?: boolean | EventListenerOptions): void;
|
|
160
157
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
161
158
|
} & {
|
|
162
|
-
<
|
|
159
|
+
<K_16 extends keyof HTMLElementEventMap>(type: K_16, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_16]) => any, options?: boolean | EventListenerOptions): void;
|
|
163
160
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
164
161
|
} & {
|
|
165
162
|
<K_1_8 extends keyof HTMLElementEventMap>(type: K_1_8, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_8]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -182,15 +179,14 @@ declare const UserProfileWidget: {
|
|
|
182
179
|
} & {
|
|
183
180
|
<K_1_14 extends keyof HTMLElementEventMap>(type: K_1_14, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_14]) => any, options?: boolean | EventListenerOptions): void;
|
|
184
181
|
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
182
|
+
} & {
|
|
183
|
+
<K_1_15 extends keyof HTMLElementEventMap>(type: K_1_15, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_15]) => any, options?: boolean | EventListenerOptions): void;
|
|
184
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
185
185
|
};
|
|
186
|
-
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) & {
|
|
186
|
+
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) & ((attrName: string, oldValue: string, newValue: string) => void) & {
|
|
187
187
|
(attrName: string, oldValue: string, newValue: string): void;
|
|
188
188
|
(attrName: string, oldValue: string, newValue: string): void;
|
|
189
189
|
} & ((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, newValue: string) => void);
|
|
190
|
-
connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & {
|
|
191
|
-
(): void;
|
|
192
|
-
(): void;
|
|
193
|
-
} & (() => 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);
|
|
194
190
|
readonly attributes: NamedNodeMap;
|
|
195
191
|
readonly classList: DOMTokenList;
|
|
196
192
|
className: string;
|
|
@@ -201,8 +197,8 @@ declare const UserProfileWidget: {
|
|
|
201
197
|
id: string;
|
|
202
198
|
readonly localName: string;
|
|
203
199
|
readonly namespaceURI: string;
|
|
204
|
-
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);
|
|
205
|
-
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);
|
|
200
|
+
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) & ((this: Element, ev: Event) => any);
|
|
201
|
+
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) & ((this: Element, ev: Event) => any);
|
|
206
202
|
outerHTML: string;
|
|
207
203
|
readonly ownerDocument: Document;
|
|
208
204
|
readonly part: DOMTokenList;
|
|
@@ -214,8 +210,8 @@ declare const UserProfileWidget: {
|
|
|
214
210
|
readonly shadowRoot: ShadowRoot;
|
|
215
211
|
slot: string;
|
|
216
212
|
readonly tagName: string;
|
|
217
|
-
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);
|
|
218
|
-
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);
|
|
213
|
+
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) & ((init: ShadowRootInit) => ShadowRoot);
|
|
214
|
+
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) & ((options?: CheckVisibilityOptions) => boolean);
|
|
219
215
|
closest: {
|
|
220
216
|
<K_2_1 extends keyof HTMLElementTagNameMap>(selector: K_2_1): HTMLElementTagNameMap[K_2_1];
|
|
221
217
|
<K_3_1 extends keyof SVGElementTagNameMap>(selector: K_3_1): SVGElementTagNameMap[K_3_1];
|
|
@@ -246,15 +242,15 @@ declare const UserProfileWidget: {
|
|
|
246
242
|
<K_3_6 extends keyof SVGElementTagNameMap>(selector: K_3_6): SVGElementTagNameMap[K_3_6];
|
|
247
243
|
<K_4_6 extends keyof MathMLElementTagNameMap>(selector: K_4_6): MathMLElementTagNameMap[K_4_6];
|
|
248
244
|
<E_5 extends Element = Element>(selectors: string): E_5;
|
|
249
|
-
} & {
|
|
250
|
-
<K_16 extends keyof HTMLElementTagNameMap>(selector: K_16): HTMLElementTagNameMap[K_16];
|
|
251
|
-
<K_17 extends keyof SVGElementTagNameMap>(selector: K_17): SVGElementTagNameMap[K_17];
|
|
252
|
-
<K_18 extends keyof MathMLElementTagNameMap>(selector: K_18): MathMLElementTagNameMap[K_18];
|
|
253
|
-
<E_6 extends Element = Element>(selectors: string): E_6;
|
|
254
245
|
} & {
|
|
255
246
|
<K_2_7 extends keyof HTMLElementTagNameMap>(selector: K_2_7): HTMLElementTagNameMap[K_2_7];
|
|
256
247
|
<K_3_7 extends keyof SVGElementTagNameMap>(selector: K_3_7): SVGElementTagNameMap[K_3_7];
|
|
257
248
|
<K_4_7 extends keyof MathMLElementTagNameMap>(selector: K_4_7): MathMLElementTagNameMap[K_4_7];
|
|
249
|
+
<E_6 extends Element = Element>(selectors: string): E_6;
|
|
250
|
+
} & {
|
|
251
|
+
<K_17 extends keyof HTMLElementTagNameMap>(selector: K_17): HTMLElementTagNameMap[K_17];
|
|
252
|
+
<K_18 extends keyof SVGElementTagNameMap>(selector: K_18): SVGElementTagNameMap[K_18];
|
|
253
|
+
<K_19 extends keyof MathMLElementTagNameMap>(selector: K_19): MathMLElementTagNameMap[K_19];
|
|
258
254
|
<E_7 extends Element = Element>(selectors: string): E_7;
|
|
259
255
|
} & {
|
|
260
256
|
<K_2_8 extends keyof HTMLElementTagNameMap>(selector: K_2_8): HTMLElementTagNameMap[K_2_8];
|
|
@@ -291,16 +287,21 @@ declare const UserProfileWidget: {
|
|
|
291
287
|
<K_3_14 extends keyof SVGElementTagNameMap>(selector: K_3_14): SVGElementTagNameMap[K_3_14];
|
|
292
288
|
<K_4_14 extends keyof MathMLElementTagNameMap>(selector: K_4_14): MathMLElementTagNameMap[K_4_14];
|
|
293
289
|
<E_14 extends Element = Element>(selectors: string): E_14;
|
|
290
|
+
} & {
|
|
291
|
+
<K_2_15 extends keyof HTMLElementTagNameMap>(selector: K_2_15): HTMLElementTagNameMap[K_2_15];
|
|
292
|
+
<K_3_15 extends keyof SVGElementTagNameMap>(selector: K_3_15): SVGElementTagNameMap[K_3_15];
|
|
293
|
+
<K_4_15 extends keyof MathMLElementTagNameMap>(selector: K_4_15): MathMLElementTagNameMap[K_4_15];
|
|
294
|
+
<E_15 extends Element = Element>(selectors: string): E_15;
|
|
294
295
|
};
|
|
295
|
-
computedStyleMap: (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly);
|
|
296
|
-
getAttribute: ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string);
|
|
297
|
-
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, 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) & ((namespace: string, localName: string) => string);
|
|
298
|
-
getAttributeNames: (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]);
|
|
299
|
-
getAttributeNode: ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr);
|
|
300
|
-
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, 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) & ((namespace: string, localName: string) => Attr);
|
|
301
|
-
getBoundingClientRect: (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect);
|
|
302
|
-
getClientRects: (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList);
|
|
303
|
-
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>);
|
|
296
|
+
computedStyleMap: (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly);
|
|
297
|
+
getAttribute: ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string);
|
|
298
|
+
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, 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) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string);
|
|
299
|
+
getAttributeNames: (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]);
|
|
300
|
+
getAttributeNode: ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr);
|
|
301
|
+
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, 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) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr);
|
|
302
|
+
getBoundingClientRect: (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect);
|
|
303
|
+
getClientRects: (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList);
|
|
304
|
+
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>) & ((classNames: string) => HTMLCollectionOf<Element>);
|
|
304
305
|
getElementsByTagName: {
|
|
305
306
|
<K_5_1 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_1): HTMLCollectionOf<HTMLElementTagNameMap[K_5_1]>;
|
|
306
307
|
<K_6_1 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_1): HTMLCollectionOf<SVGElementTagNameMap[K_6_1]>;
|
|
@@ -337,18 +338,18 @@ declare const UserProfileWidget: {
|
|
|
337
338
|
<K_7_6 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_6): HTMLCollectionOf<MathMLElementTagNameMap[K_7_6]>;
|
|
338
339
|
<K_8_6 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_6): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_6]>;
|
|
339
340
|
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
340
|
-
} & {
|
|
341
|
-
<K_19 extends keyof HTMLElementTagNameMap>(qualifiedName: K_19): HTMLCollectionOf<HTMLElementTagNameMap[K_19]>;
|
|
342
|
-
<K_20 extends keyof SVGElementTagNameMap>(qualifiedName: K_20): HTMLCollectionOf<SVGElementTagNameMap[K_20]>;
|
|
343
|
-
<K_21 extends keyof MathMLElementTagNameMap>(qualifiedName: K_21): HTMLCollectionOf<MathMLElementTagNameMap[K_21]>;
|
|
344
|
-
<K_22 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_22]>;
|
|
345
|
-
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
346
341
|
} & {
|
|
347
342
|
<K_5_7 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_7): HTMLCollectionOf<HTMLElementTagNameMap[K_5_7]>;
|
|
348
343
|
<K_6_7 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_7): HTMLCollectionOf<SVGElementTagNameMap[K_6_7]>;
|
|
349
344
|
<K_7_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7_7]>;
|
|
350
345
|
<K_8_7 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_7): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_7]>;
|
|
351
346
|
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
347
|
+
} & {
|
|
348
|
+
<K_20 extends keyof HTMLElementTagNameMap>(qualifiedName: K_20): HTMLCollectionOf<HTMLElementTagNameMap[K_20]>;
|
|
349
|
+
<K_21 extends keyof SVGElementTagNameMap>(qualifiedName: K_21): HTMLCollectionOf<SVGElementTagNameMap[K_21]>;
|
|
350
|
+
<K_22 extends keyof MathMLElementTagNameMap>(qualifiedName: K_22): HTMLCollectionOf<MathMLElementTagNameMap[K_22]>;
|
|
351
|
+
<K_23 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_23]>;
|
|
352
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
352
353
|
} & {
|
|
353
354
|
<K_5_8 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_8): HTMLCollectionOf<HTMLElementTagNameMap[K_5_8]>;
|
|
354
355
|
<K_6_8 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_8): HTMLCollectionOf<SVGElementTagNameMap[K_6_8]>;
|
|
@@ -391,6 +392,12 @@ declare const UserProfileWidget: {
|
|
|
391
392
|
<K_7_14 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_14): HTMLCollectionOf<MathMLElementTagNameMap[K_7_14]>;
|
|
392
393
|
<K_8_14 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_14): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_14]>;
|
|
393
394
|
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
395
|
+
} & {
|
|
396
|
+
<K_5_15 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_15): HTMLCollectionOf<HTMLElementTagNameMap[K_5_15]>;
|
|
397
|
+
<K_6_15 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_15): HTMLCollectionOf<SVGElementTagNameMap[K_6_15]>;
|
|
398
|
+
<K_7_15 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_15): HTMLCollectionOf<MathMLElementTagNameMap[K_7_15]>;
|
|
399
|
+
<K_8_15 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_15): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_15]>;
|
|
400
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
394
401
|
};
|
|
395
402
|
getElementsByTagNameNS: {
|
|
396
403
|
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
@@ -467,21 +474,26 @@ declare const UserProfileWidget: {
|
|
|
467
474
|
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
468
475
|
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
469
476
|
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
477
|
+
} & {
|
|
478
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
479
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
480
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
481
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
470
482
|
};
|
|
471
|
-
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);
|
|
472
|
-
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, 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);
|
|
473
|
-
hasAttributes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
|
|
474
|
-
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);
|
|
475
|
-
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) & ((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);
|
|
476
|
-
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, 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) & ((position: InsertPosition, text: string) => void);
|
|
477
|
-
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);
|
|
478
|
-
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);
|
|
479
|
-
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);
|
|
480
|
-
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);
|
|
481
|
-
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, 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);
|
|
482
|
-
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);
|
|
483
|
-
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>);
|
|
484
|
-
requestPointerLock: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
483
|
+
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) & ((qualifiedName: string) => boolean);
|
|
484
|
+
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, 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) & ((namespace: string, localName: string) => boolean);
|
|
485
|
+
hasAttributes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
|
|
486
|
+
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) & ((pointerId: number) => boolean);
|
|
487
|
+
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) & ((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) & ((where: InsertPosition, element: Element) => Element);
|
|
488
|
+
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, 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) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void);
|
|
489
|
+
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) & ((where: InsertPosition, data: string) => void);
|
|
490
|
+
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) & ((selectors: string) => boolean);
|
|
491
|
+
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) & ((pointerId: number) => void);
|
|
492
|
+
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) & ((qualifiedName: string) => void);
|
|
493
|
+
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, 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) & ((namespace: string, localName: string) => void);
|
|
494
|
+
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) & ((attr: Attr) => Attr);
|
|
495
|
+
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>) & ((options?: FullscreenOptions) => Promise<void>);
|
|
496
|
+
requestPointerLock: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
485
497
|
scroll: {
|
|
486
498
|
(options?: ScrollToOptions): void;
|
|
487
499
|
(x: number, y: number): void;
|
|
@@ -527,6 +539,9 @@ declare const UserProfileWidget: {
|
|
|
527
539
|
} & {
|
|
528
540
|
(options?: ScrollToOptions): void;
|
|
529
541
|
(x: number, y: number): void;
|
|
542
|
+
} & {
|
|
543
|
+
(options?: ScrollToOptions): void;
|
|
544
|
+
(x: number, y: number): void;
|
|
530
545
|
};
|
|
531
546
|
scrollBy: {
|
|
532
547
|
(options?: ScrollToOptions): void;
|
|
@@ -573,8 +588,11 @@ declare const UserProfileWidget: {
|
|
|
573
588
|
} & {
|
|
574
589
|
(options?: ScrollToOptions): void;
|
|
575
590
|
(x: number, y: number): void;
|
|
591
|
+
} & {
|
|
592
|
+
(options?: ScrollToOptions): void;
|
|
593
|
+
(x: number, y: number): void;
|
|
576
594
|
};
|
|
577
|
-
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);
|
|
595
|
+
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) & ((arg?: boolean | ScrollIntoViewOptions) => void);
|
|
578
596
|
scrollTo: {
|
|
579
597
|
(options?: ScrollToOptions): void;
|
|
580
598
|
(x: number, y: number): void;
|
|
@@ -620,14 +638,17 @@ declare const UserProfileWidget: {
|
|
|
620
638
|
} & {
|
|
621
639
|
(options?: ScrollToOptions): void;
|
|
622
640
|
(x: number, y: number): void;
|
|
641
|
+
} & {
|
|
642
|
+
(options?: ScrollToOptions): void;
|
|
643
|
+
(x: number, y: number): void;
|
|
623
644
|
};
|
|
624
|
-
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);
|
|
625
|
-
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, 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);
|
|
626
|
-
setAttributeNode: ((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);
|
|
627
|
-
setAttributeNodeNS: ((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);
|
|
628
|
-
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);
|
|
629
|
-
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);
|
|
630
|
-
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);
|
|
645
|
+
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) & ((qualifiedName: string, value: string) => void);
|
|
646
|
+
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, 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) & ((namespace: string, qualifiedName: string, value: string) => void);
|
|
647
|
+
setAttributeNode: ((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) & ((attr: Attr) => Attr);
|
|
648
|
+
setAttributeNodeNS: ((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) & ((attr: Attr) => Attr);
|
|
649
|
+
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) & ((pointerId: number) => void);
|
|
650
|
+
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) & ((qualifiedName: string, force?: boolean) => boolean);
|
|
651
|
+
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) & ((selectors: string) => boolean);
|
|
631
652
|
readonly baseURI: string;
|
|
632
653
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
633
654
|
readonly firstChild: ChildNode;
|
|
@@ -641,21 +662,21 @@ declare const UserProfileWidget: {
|
|
|
641
662
|
readonly parentNode: ParentNode;
|
|
642
663
|
readonly previousSibling: ChildNode;
|
|
643
664
|
textContent: string;
|
|
644
|
-
appendChild: (<T_1 extends Node>(node: T_1) => T_1) & (<T_1_1 extends Node>(node: T_1_1) => T_1_1) & (<T_1_2 extends Node>(node: T_1_2) => T_1_2) & (<T_1_3 extends Node>(node: T_1_3) => T_1_3) & (<T_1_4 extends Node>(node: T_1_4) => T_1_4) & (<T_1_5 extends Node>(node: T_1_5) => T_1_5) & (<
|
|
645
|
-
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);
|
|
646
|
-
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);
|
|
647
|
-
contains: ((other: Node) => 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) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean);
|
|
648
|
-
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);
|
|
649
|
-
hasChildNodes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
|
|
650
|
-
insertBefore: (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2_1 extends Node>(node: T_2_1, child: Node) => T_2_1) & (<T_2_2 extends Node>(node: T_2_2, child: Node) => T_2_2) & (<T_2_3 extends Node>(node: T_2_3, child: Node) => T_2_3) & (<T_2_4 extends Node>(node: T_2_4, child: Node) => T_2_4) & (<T_2_5 extends Node>(node: T_2_5, child: Node) => T_2_5) & (<
|
|
651
|
-
isDefaultNamespace: ((namespace: string) => 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) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean);
|
|
652
|
-
isEqualNode: ((otherNode: Node) => 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) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
653
|
-
isSameNode: ((otherNode: Node) => 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) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
654
|
-
lookupNamespaceURI: ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string);
|
|
655
|
-
lookupPrefix: ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string);
|
|
656
|
-
normalize: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
657
|
-
removeChild: (<T_3_1 extends Node>(child: T_3_1) => T_3_1) & (<T_3_2 extends Node>(child: T_3_2) => T_3_2) & (<T_3_3 extends Node>(child: T_3_3) => T_3_3) & (<T_3_4 extends Node>(child: T_3_4) => T_3_4) & (<T_3_5 extends Node>(child: T_3_5) => T_3_5) & (<T_3_6 extends Node>(child: T_3_6) => T_3_6) & (<
|
|
658
|
-
replaceChild: (<T_4_1 extends Node>(node: Node, child: T_4_1) => T_4_1) & (<T_4_2 extends Node>(node: Node, child: T_4_2) => T_4_2) & (<T_4_3 extends Node>(node: Node, child: T_4_3) => T_4_3) & (<T_4_4 extends Node>(node: Node, child: T_4_4) => T_4_4) & (<T_4_5 extends Node>(node: Node, child: T_4_5) => T_4_5) & (<T_4_6 extends Node>(node: Node, child: T_4_6) => T_4_6) & (<
|
|
665
|
+
appendChild: (<T_1 extends Node>(node: T_1) => T_1) & (<T_1_1 extends Node>(node: T_1_1) => T_1_1) & (<T_1_2 extends Node>(node: T_1_2) => T_1_2) & (<T_1_3 extends Node>(node: T_1_3) => T_1_3) & (<T_1_4 extends Node>(node: T_1_4) => T_1_4) & (<T_1_5 extends Node>(node: T_1_5) => T_1_5) & (<T_1_6 extends Node>(node: T_1_6) => T_1_6) & (<T extends Node>(node: T) => T) & (<T_1_7 extends Node>(node: T_1_7) => T_1_7) & (<T_1_8 extends Node>(node: T_1_8) => T_1_8) & (<T_1_9 extends Node>(node: T_1_9) => T_1_9) & (<T_1_10 extends Node>(node: T_1_10) => T_1_10) & (<T_1_11 extends Node>(node: T_1_11) => T_1_11) & (<T_1_12 extends Node>(node: T_1_12) => T_1_12) & (<T_1_13 extends Node>(node: T_1_13) => T_1_13) & (<T_1_14 extends Node>(node: T_1_14) => T_1_14);
|
|
666
|
+
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) & ((deep?: boolean) => Node);
|
|
667
|
+
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) & ((other: Node) => number);
|
|
668
|
+
contains: ((other: Node) => 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) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean);
|
|
669
|
+
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) & ((options?: GetRootNodeOptions) => Node);
|
|
670
|
+
hasChildNodes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
|
|
671
|
+
insertBefore: (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2_1 extends Node>(node: T_2_1, child: Node) => T_2_1) & (<T_2_2 extends Node>(node: T_2_2, child: Node) => T_2_2) & (<T_2_3 extends Node>(node: T_2_3, child: Node) => T_2_3) & (<T_2_4 extends Node>(node: T_2_4, child: Node) => T_2_4) & (<T_2_5 extends Node>(node: T_2_5, child: Node) => T_2_5) & (<T_2_6 extends Node>(node: T_2_6, child: Node) => T_2_6) & (<T_3 extends Node>(node: T_3, child: Node) => T_3) & (<T_2_7 extends Node>(node: T_2_7, child: Node) => T_2_7) & (<T_2_8 extends Node>(node: T_2_8, child: Node) => T_2_8) & (<T_2_9 extends Node>(node: T_2_9, child: Node) => T_2_9) & (<T_2_10 extends Node>(node: T_2_10, child: Node) => T_2_10) & (<T_2_11 extends Node>(node: T_2_11, child: Node) => T_2_11) & (<T_2_12 extends Node>(node: T_2_12, child: Node) => T_2_12) & (<T_2_13 extends Node>(node: T_2_13, child: Node) => T_2_13) & (<T_2_14 extends Node>(node: T_2_14, child: Node) => T_2_14);
|
|
672
|
+
isDefaultNamespace: ((namespace: string) => 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) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean);
|
|
673
|
+
isEqualNode: ((otherNode: Node) => 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) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
674
|
+
isSameNode: ((otherNode: Node) => 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) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
675
|
+
lookupNamespaceURI: ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string);
|
|
676
|
+
lookupPrefix: ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string);
|
|
677
|
+
normalize: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
678
|
+
removeChild: (<T_3_1 extends Node>(child: T_3_1) => T_3_1) & (<T_3_2 extends Node>(child: T_3_2) => T_3_2) & (<T_3_3 extends Node>(child: T_3_3) => T_3_3) & (<T_3_4 extends Node>(child: T_3_4) => T_3_4) & (<T_3_5 extends Node>(child: T_3_5) => T_3_5) & (<T_3_6 extends Node>(child: T_3_6) => T_3_6) & (<T_3_7 extends Node>(child: T_3_7) => T_3_7) & (<T_4 extends Node>(child: T_4) => T_4) & (<T_3_8 extends Node>(child: T_3_8) => T_3_8) & (<T_3_9 extends Node>(child: T_3_9) => T_3_9) & (<T_3_10 extends Node>(child: T_3_10) => T_3_10) & (<T_3_11 extends Node>(child: T_3_11) => T_3_11) & (<T_3_12 extends Node>(child: T_3_12) => T_3_12) & (<T_3_13 extends Node>(child: T_3_13) => T_3_13) & (<T_3_14 extends Node>(child: T_3_14) => T_3_14) & (<T_3_15 extends Node>(child: T_3_15) => T_3_15);
|
|
679
|
+
replaceChild: (<T_4_1 extends Node>(node: Node, child: T_4_1) => T_4_1) & (<T_4_2 extends Node>(node: Node, child: T_4_2) => T_4_2) & (<T_4_3 extends Node>(node: Node, child: T_4_3) => T_4_3) & (<T_4_4 extends Node>(node: Node, child: T_4_4) => T_4_4) & (<T_4_5 extends Node>(node: Node, child: T_4_5) => T_4_5) & (<T_4_6 extends Node>(node: Node, child: T_4_6) => T_4_6) & (<T_4_7 extends Node>(node: Node, child: T_4_7) => T_4_7) & (<T_5 extends Node>(node: Node, child: T_5) => T_5) & (<T_4_8 extends Node>(node: Node, child: T_4_8) => T_4_8) & (<T_4_9 extends Node>(node: Node, child: T_4_9) => T_4_9) & (<T_4_10 extends Node>(node: Node, child: T_4_10) => T_4_10) & (<T_4_11 extends Node>(node: Node, child: T_4_11) => T_4_11) & (<T_4_12 extends Node>(node: Node, child: T_4_12) => T_4_12) & (<T_4_13 extends Node>(node: Node, child: T_4_13) => T_4_13) & (<T_4_14 extends Node>(node: Node, child: T_4_14) => T_4_14) & (<T_4_15 extends Node>(node: Node, child: T_4_15) => T_4_15);
|
|
659
680
|
readonly ELEMENT_NODE: 1;
|
|
660
681
|
readonly ATTRIBUTE_NODE: 2;
|
|
661
682
|
readonly TEXT_NODE: 3;
|
|
@@ -674,7 +695,7 @@ declare const UserProfileWidget: {
|
|
|
674
695
|
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
675
696
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
676
697
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
677
|
-
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);
|
|
698
|
+
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) & ((event: Event) => boolean);
|
|
678
699
|
ariaAtomic: string;
|
|
679
700
|
ariaAutoComplete: string;
|
|
680
701
|
ariaBusy: string;
|
|
@@ -714,12 +735,12 @@ declare const UserProfileWidget: {
|
|
|
714
735
|
ariaValueNow: string;
|
|
715
736
|
ariaValueText: string;
|
|
716
737
|
role: string;
|
|
717
|
-
animate: ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation);
|
|
718
|
-
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[]);
|
|
719
|
-
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: (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) & ((...nodes: (string | Node)[]) => void);
|
|
720
|
-
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: (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) & ((...nodes: (string | Node)[]) => void);
|
|
721
|
-
remove: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
722
|
-
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: (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) & ((...nodes: (string | Node)[]) => void);
|
|
738
|
+
animate: ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation);
|
|
739
|
+
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[]) & ((options?: GetAnimationsOptions) => Animation[]);
|
|
740
|
+
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: (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) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
741
|
+
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: (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) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
742
|
+
remove: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
743
|
+
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: (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) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
723
744
|
innerHTML: string;
|
|
724
745
|
readonly nextElementSibling: Element;
|
|
725
746
|
readonly previousElementSibling: Element;
|
|
@@ -727,8 +748,8 @@ declare const UserProfileWidget: {
|
|
|
727
748
|
readonly children: HTMLCollection;
|
|
728
749
|
readonly firstElementChild: Element;
|
|
729
750
|
readonly lastElementChild: Element;
|
|
730
|
-
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: (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) & ((...nodes: (string | Node)[]) => void);
|
|
731
|
-
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: (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) & ((...nodes: (string | Node)[]) => void);
|
|
751
|
+
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: (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) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
752
|
+
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: (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) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
732
753
|
querySelector: {
|
|
733
754
|
<K_9_1 extends keyof HTMLElementTagNameMap>(selectors: K_9_1): HTMLElementTagNameMap[K_9_1];
|
|
734
755
|
<K_10_1 extends keyof SVGElementTagNameMap>(selectors: K_10_1): SVGElementTagNameMap[K_10_1];
|
|
@@ -765,18 +786,18 @@ declare const UserProfileWidget: {
|
|
|
765
786
|
<K_11_6 extends keyof MathMLElementTagNameMap>(selectors: K_11_6): MathMLElementTagNameMap[K_11_6];
|
|
766
787
|
<K_12_6 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_6): HTMLElementDeprecatedTagNameMap[K_12_6];
|
|
767
788
|
<E_1_6 extends Element = Element>(selectors: string): E_1_6;
|
|
768
|
-
} & {
|
|
769
|
-
<K_23 extends keyof HTMLElementTagNameMap>(selectors: K_23): HTMLElementTagNameMap[K_23];
|
|
770
|
-
<K_24 extends keyof SVGElementTagNameMap>(selectors: K_24): SVGElementTagNameMap[K_24];
|
|
771
|
-
<K_25 extends keyof MathMLElementTagNameMap>(selectors: K_25): MathMLElementTagNameMap[K_25];
|
|
772
|
-
<K_26 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_26): HTMLElementDeprecatedTagNameMap[K_26];
|
|
773
|
-
<E_15 extends Element = Element>(selectors: string): E_15;
|
|
774
789
|
} & {
|
|
775
790
|
<K_9_7 extends keyof HTMLElementTagNameMap>(selectors: K_9_7): HTMLElementTagNameMap[K_9_7];
|
|
776
791
|
<K_10_7 extends keyof SVGElementTagNameMap>(selectors: K_10_7): SVGElementTagNameMap[K_10_7];
|
|
777
792
|
<K_11_7 extends keyof MathMLElementTagNameMap>(selectors: K_11_7): MathMLElementTagNameMap[K_11_7];
|
|
778
793
|
<K_12_7 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_7): HTMLElementDeprecatedTagNameMap[K_12_7];
|
|
779
794
|
<E_1_7 extends Element = Element>(selectors: string): E_1_7;
|
|
795
|
+
} & {
|
|
796
|
+
<K_24 extends keyof HTMLElementTagNameMap>(selectors: K_24): HTMLElementTagNameMap[K_24];
|
|
797
|
+
<K_25 extends keyof SVGElementTagNameMap>(selectors: K_25): SVGElementTagNameMap[K_25];
|
|
798
|
+
<K_26 extends keyof MathMLElementTagNameMap>(selectors: K_26): MathMLElementTagNameMap[K_26];
|
|
799
|
+
<K_27 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_27): HTMLElementDeprecatedTagNameMap[K_27];
|
|
800
|
+
<E_16 extends Element = Element>(selectors: string): E_16;
|
|
780
801
|
} & {
|
|
781
802
|
<K_9_8 extends keyof HTMLElementTagNameMap>(selectors: K_9_8): HTMLElementTagNameMap[K_9_8];
|
|
782
803
|
<K_10_8 extends keyof SVGElementTagNameMap>(selectors: K_10_8): SVGElementTagNameMap[K_10_8];
|
|
@@ -819,6 +840,12 @@ declare const UserProfileWidget: {
|
|
|
819
840
|
<K_11_14 extends keyof MathMLElementTagNameMap>(selectors: K_11_14): MathMLElementTagNameMap[K_11_14];
|
|
820
841
|
<K_12_14 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_14): HTMLElementDeprecatedTagNameMap[K_12_14];
|
|
821
842
|
<E_1_14 extends Element = Element>(selectors: string): E_1_14;
|
|
843
|
+
} & {
|
|
844
|
+
<K_9_15 extends keyof HTMLElementTagNameMap>(selectors: K_9_15): HTMLElementTagNameMap[K_9_15];
|
|
845
|
+
<K_10_15 extends keyof SVGElementTagNameMap>(selectors: K_10_15): SVGElementTagNameMap[K_10_15];
|
|
846
|
+
<K_11_15 extends keyof MathMLElementTagNameMap>(selectors: K_11_15): MathMLElementTagNameMap[K_11_15];
|
|
847
|
+
<K_12_15 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_15): HTMLElementDeprecatedTagNameMap[K_12_15];
|
|
848
|
+
<E_1_15 extends Element = Element>(selectors: string): E_1_15;
|
|
822
849
|
};
|
|
823
850
|
querySelectorAll: {
|
|
824
851
|
<K_13_1 extends keyof HTMLElementTagNameMap>(selectors: K_13_1): NodeListOf<HTMLElementTagNameMap[K_13_1]>;
|
|
@@ -856,18 +883,18 @@ declare const UserProfileWidget: {
|
|
|
856
883
|
<K_15_6 extends keyof MathMLElementTagNameMap>(selectors: K_15_6): NodeListOf<MathMLElementTagNameMap[K_15_6]>;
|
|
857
884
|
<K_16_6 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_6): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_6]>;
|
|
858
885
|
<E_2_6 extends Element = Element>(selectors: string): NodeListOf<E_2_6>;
|
|
859
|
-
} & {
|
|
860
|
-
<K_27 extends keyof HTMLElementTagNameMap>(selectors: K_27): NodeListOf<HTMLElementTagNameMap[K_27]>;
|
|
861
|
-
<K_28 extends keyof SVGElementTagNameMap>(selectors: K_28): NodeListOf<SVGElementTagNameMap[K_28]>;
|
|
862
|
-
<K_29 extends keyof MathMLElementTagNameMap>(selectors: K_29): NodeListOf<MathMLElementTagNameMap[K_29]>;
|
|
863
|
-
<K_30 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_30): NodeListOf<HTMLElementDeprecatedTagNameMap[K_30]>;
|
|
864
|
-
<E_16 extends Element = Element>(selectors: string): NodeListOf<E_16>;
|
|
865
886
|
} & {
|
|
866
887
|
<K_13_7 extends keyof HTMLElementTagNameMap>(selectors: K_13_7): NodeListOf<HTMLElementTagNameMap[K_13_7]>;
|
|
867
888
|
<K_14_7 extends keyof SVGElementTagNameMap>(selectors: K_14_7): NodeListOf<SVGElementTagNameMap[K_14_7]>;
|
|
868
889
|
<K_15_7 extends keyof MathMLElementTagNameMap>(selectors: K_15_7): NodeListOf<MathMLElementTagNameMap[K_15_7]>;
|
|
869
890
|
<K_16_7 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_7): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_7]>;
|
|
870
891
|
<E_2_7 extends Element = Element>(selectors: string): NodeListOf<E_2_7>;
|
|
892
|
+
} & {
|
|
893
|
+
<K_28 extends keyof HTMLElementTagNameMap>(selectors: K_28): NodeListOf<HTMLElementTagNameMap[K_28]>;
|
|
894
|
+
<K_29 extends keyof SVGElementTagNameMap>(selectors: K_29): NodeListOf<SVGElementTagNameMap[K_29]>;
|
|
895
|
+
<K_30 extends keyof MathMLElementTagNameMap>(selectors: K_30): NodeListOf<MathMLElementTagNameMap[K_30]>;
|
|
896
|
+
<K_31 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_31): NodeListOf<HTMLElementDeprecatedTagNameMap[K_31]>;
|
|
897
|
+
<E_17 extends Element = Element>(selectors: string): NodeListOf<E_17>;
|
|
871
898
|
} & {
|
|
872
899
|
<K_13_8 extends keyof HTMLElementTagNameMap>(selectors: K_13_8): NodeListOf<HTMLElementTagNameMap[K_13_8]>;
|
|
873
900
|
<K_14_8 extends keyof SVGElementTagNameMap>(selectors: K_14_8): NodeListOf<SVGElementTagNameMap[K_14_8]>;
|
|
@@ -910,8 +937,14 @@ declare const UserProfileWidget: {
|
|
|
910
937
|
<K_15_14 extends keyof MathMLElementTagNameMap>(selectors: K_15_14): NodeListOf<MathMLElementTagNameMap[K_15_14]>;
|
|
911
938
|
<K_16_14 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_14): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_14]>;
|
|
912
939
|
<E_2_14 extends Element = Element>(selectors: string): NodeListOf<E_2_14>;
|
|
940
|
+
} & {
|
|
941
|
+
<K_13_15 extends keyof HTMLElementTagNameMap>(selectors: K_13_15): NodeListOf<HTMLElementTagNameMap[K_13_15]>;
|
|
942
|
+
<K_14_15 extends keyof SVGElementTagNameMap>(selectors: K_14_15): NodeListOf<SVGElementTagNameMap[K_14_15]>;
|
|
943
|
+
<K_15_15 extends keyof MathMLElementTagNameMap>(selectors: K_15_15): NodeListOf<MathMLElementTagNameMap[K_15_15]>;
|
|
944
|
+
<K_16_15 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_15): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_15]>;
|
|
945
|
+
<E_2_15 extends Element = Element>(selectors: string): NodeListOf<E_2_15>;
|
|
913
946
|
};
|
|
914
|
-
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: (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) & ((...nodes: (string | Node)[]) => void);
|
|
947
|
+
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: (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) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
915
948
|
readonly assignedSlot: HTMLSlotElement;
|
|
916
949
|
readonly attributeStyleMap: StylePropertyMap;
|
|
917
950
|
readonly style: CSSStyleDeclaration;
|
|
@@ -919,123 +952,198 @@ declare const UserProfileWidget: {
|
|
|
919
952
|
enterKeyHint: string;
|
|
920
953
|
inputMode: string;
|
|
921
954
|
readonly isContentEditable: boolean;
|
|
922
|
-
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);
|
|
923
|
-
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);
|
|
924
|
-
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);
|
|
925
|
-
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);
|
|
926
|
-
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);
|
|
927
|
-
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);
|
|
928
|
-
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);
|
|
929
|
-
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);
|
|
930
|
-
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);
|
|
931
|
-
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);
|
|
932
|
-
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);
|
|
933
|
-
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);
|
|
934
|
-
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);
|
|
935
|
-
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);
|
|
936
|
-
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);
|
|
937
|
-
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);
|
|
938
|
-
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);
|
|
939
|
-
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);
|
|
940
|
-
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);
|
|
941
|
-
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);
|
|
942
|
-
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);
|
|
943
|
-
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);
|
|
944
|
-
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);
|
|
945
|
-
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);
|
|
946
|
-
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);
|
|
947
|
-
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);
|
|
948
|
-
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);
|
|
949
|
-
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);
|
|
950
|
-
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);
|
|
951
|
-
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);
|
|
955
|
+
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) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
|
|
956
|
+
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) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
957
|
+
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) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
958
|
+
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) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
959
|
+
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) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
960
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
961
|
+
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) & ((this: GlobalEventHandlers, ev: InputEvent) => any);
|
|
962
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
963
|
+
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) & ((this: GlobalEventHandlers, ev: FocusEvent) => any);
|
|
964
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
965
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
966
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
967
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
968
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
969
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
970
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
971
|
+
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) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
972
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
973
|
+
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) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
974
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
975
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
976
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
977
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
978
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
979
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
980
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
981
|
+
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) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
982
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
983
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
984
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
952
985
|
onerror: OnErrorEventHandlerNonNull;
|
|
953
|
-
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);
|
|
954
|
-
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);
|
|
955
|
-
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);
|
|
956
|
-
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);
|
|
957
|
-
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);
|
|
958
|
-
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);
|
|
959
|
-
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);
|
|
960
|
-
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);
|
|
961
|
-
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);
|
|
962
|
-
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);
|
|
963
|
-
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);
|
|
964
|
-
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);
|
|
965
|
-
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);
|
|
966
|
-
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);
|
|
967
|
-
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);
|
|
968
|
-
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);
|
|
969
|
-
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);
|
|
970
|
-
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);
|
|
971
|
-
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);
|
|
972
|
-
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);
|
|
973
|
-
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);
|
|
974
|
-
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);
|
|
975
|
-
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);
|
|
976
|
-
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);
|
|
977
|
-
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);
|
|
978
|
-
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);
|
|
979
|
-
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);
|
|
980
|
-
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);
|
|
981
|
-
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);
|
|
982
|
-
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);
|
|
983
|
-
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);
|
|
984
|
-
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);
|
|
985
|
-
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<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) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any);
|
|
986
|
-
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);
|
|
987
|
-
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);
|
|
988
|
-
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);
|
|
989
|
-
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);
|
|
990
|
-
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);
|
|
991
|
-
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);
|
|
992
|
-
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);
|
|
993
|
-
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);
|
|
994
|
-
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);
|
|
995
|
-
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);
|
|
996
|
-
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);
|
|
997
|
-
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);
|
|
998
|
-
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);
|
|
999
|
-
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);
|
|
1000
|
-
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);
|
|
1001
|
-
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);
|
|
1002
|
-
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);
|
|
1003
|
-
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);
|
|
1004
|
-
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);
|
|
1005
|
-
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);
|
|
1006
|
-
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);
|
|
1007
|
-
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);
|
|
1008
|
-
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);
|
|
1009
|
-
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);
|
|
1010
|
-
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);
|
|
1011
|
-
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);
|
|
1012
|
-
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);
|
|
1013
|
-
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);
|
|
1014
|
-
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);
|
|
1015
|
-
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);
|
|
1016
|
-
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);
|
|
1017
|
-
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);
|
|
986
|
+
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) & ((this: GlobalEventHandlers, ev: FocusEvent) => any);
|
|
987
|
+
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) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any);
|
|
988
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
989
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
990
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
991
|
+
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) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
992
|
+
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) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
993
|
+
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) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
994
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
995
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
996
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
997
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
998
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
999
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1000
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1001
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1002
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1003
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1004
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1005
|
+
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) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1006
|
+
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) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
1007
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1008
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1009
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1010
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1011
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1012
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1013
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1014
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1015
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1016
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1017
|
+
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) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1018
|
+
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<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) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any);
|
|
1019
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1020
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1021
|
+
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) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
|
|
1022
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1023
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1024
|
+
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) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any);
|
|
1025
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1026
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1027
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1028
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1029
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1030
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1031
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1032
|
+
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) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any);
|
|
1033
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1034
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1035
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1036
|
+
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) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1037
|
+
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) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1038
|
+
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) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1039
|
+
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) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1040
|
+
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) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1041
|
+
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) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1042
|
+
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) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1043
|
+
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) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1044
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1045
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1046
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1047
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1048
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1049
|
+
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) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1050
|
+
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) & ((this: GlobalEventHandlers, ev: WheelEvent) => any);
|
|
1018
1051
|
autofocus: boolean;
|
|
1019
1052
|
readonly dataset: DOMStringMap;
|
|
1020
1053
|
nonce: string;
|
|
1021
1054
|
tabIndex: number;
|
|
1022
|
-
blur: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1023
|
-
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);
|
|
1055
|
+
blur: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1056
|
+
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) & ((options?: FocusOptions) => void);
|
|
1057
|
+
"__#29691@#NotificationDriverWrapper": new (refOrRefFn: Element | (() => HTMLElement), config: {
|
|
1058
|
+
logger: {
|
|
1059
|
+
error(...data: any[]): void;
|
|
1060
|
+
warn(...data: any[]): void;
|
|
1061
|
+
info(...data: any[]): void;
|
|
1062
|
+
debug(...data: any[]): void;
|
|
1063
|
+
};
|
|
1064
|
+
}) => {
|
|
1065
|
+
setContent(templateOrString: string | HTMLTemplateElement): void;
|
|
1066
|
+
nodeName: string;
|
|
1067
|
+
close(): void;
|
|
1068
|
+
show(): void;
|
|
1069
|
+
remove(): void;
|
|
1070
|
+
"__#29687@#private": any;
|
|
1071
|
+
logger: {
|
|
1072
|
+
error(...data: any[]): void;
|
|
1073
|
+
warn(...data: any[]): void;
|
|
1074
|
+
info(...data: any[]): void;
|
|
1075
|
+
debug(...data: any[]): void;
|
|
1076
|
+
};
|
|
1077
|
+
readonly asyncEle: Promise<Element>;
|
|
1078
|
+
readonly ele: Element;
|
|
1079
|
+
};
|
|
1080
|
+
createNotification(config?: {
|
|
1081
|
+
mode: "success" | "error";
|
|
1082
|
+
duration: number;
|
|
1083
|
+
'has-close-button'?: boolean;
|
|
1084
|
+
position?: "top-stretch" | "top-start" | "top-center" | "top-end" | "middle" | "bottom-start" | "bottom-center" | "bottom-end" | "bottom-stretch";
|
|
1085
|
+
size: "xs" | "sm" | "md" | "lg";
|
|
1086
|
+
bordered?: boolean;
|
|
1087
|
+
} & {
|
|
1088
|
+
[key: string]: string | number | boolean;
|
|
1089
|
+
}): {
|
|
1090
|
+
setContent(templateOrString: string | HTMLTemplateElement): void;
|
|
1091
|
+
nodeName: string;
|
|
1092
|
+
close(): void;
|
|
1093
|
+
show(): void;
|
|
1094
|
+
remove(): void;
|
|
1095
|
+
"__#29687@#private": any;
|
|
1096
|
+
logger: {
|
|
1097
|
+
error(...data: any[]): void;
|
|
1098
|
+
warn(...data: any[]): void;
|
|
1099
|
+
info(...data: any[]): void;
|
|
1100
|
+
debug(...data: any[]): void;
|
|
1101
|
+
};
|
|
1102
|
+
readonly asyncEle: Promise<Element>;
|
|
1103
|
+
readonly ele: Element;
|
|
1104
|
+
};
|
|
1105
|
+
"__#29686@#getComponentsVersion": (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>);
|
|
1106
|
+
"__#29686@#descopeUi": Promise<any>;
|
|
1107
|
+
readonly descopeUi: Promise<any>;
|
|
1108
|
+
"__#29686@#loadDescopeUiComponent": ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>);
|
|
1109
|
+
"__#29686@#getDescopeUi": (() => Promise<any>) & (() => Promise<any>) & (() => Promise<any>) & (() => Promise<any>);
|
|
1110
|
+
loadDescopeUiComponents: ((templateOrComponentNames: string[] | HTMLTemplateElement) => Promise<any[]>) & ((templateOrComponentNames: string[] | HTMLTemplateElement) => Promise<any[]>) & ((templateOrComponentNames: string[] | HTMLTemplateElement) => Promise<any[]>) & ((templateOrComponentNames: string[] | HTMLTemplateElement) => Promise<any[]>);
|
|
1111
|
+
readonly baseCdnUrl: string;
|
|
1112
|
+
injectNpmLib: ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
1113
|
+
id: string;
|
|
1114
|
+
url: URL;
|
|
1115
|
+
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
1116
|
+
id: string;
|
|
1117
|
+
url: URL;
|
|
1118
|
+
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
1119
|
+
id: string;
|
|
1120
|
+
url: URL;
|
|
1121
|
+
}>) & ((libName: string, version: string, filePath?: string, overrides?: string[]) => Promise<{
|
|
1122
|
+
id: string;
|
|
1123
|
+
url: URL;
|
|
1124
|
+
}>);
|
|
1125
|
+
"__#29676@#logger": _descope_sdk_mixins.Logger;
|
|
1126
|
+
"__#29676@#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) & ((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);
|
|
1127
|
+
logger: _descope_sdk_mixins.Logger;
|
|
1128
|
+
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: "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: "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", args: any[]) => void);
|
|
1024
1129
|
readonly config: Promise<_descope_sdk_mixins.Config>;
|
|
1025
|
-
"__#
|
|
1026
|
-
"__#
|
|
1027
|
-
"__#
|
|
1028
|
-
"__#
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
"__#
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
"__#
|
|
1037
|
-
"__#
|
|
1038
|
-
|
|
1130
|
+
"__#29682@#configCacheClear": (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1131
|
+
"__#29682@#_configResource": Promise<_descope_sdk_mixins.Config>;
|
|
1132
|
+
"__#29682@#fetchConfig": (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>);
|
|
1133
|
+
"__#29681@#callbacks": Map<string, () => void> & Map<string, () => void> & Map<string, () => void> & Map<string, () => void> & Map<string, () => void>;
|
|
1134
|
+
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) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
|
|
1135
|
+
reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
|
|
1136
|
+
"__#29679@#handleError": ((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) & ((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);
|
|
1137
|
+
"__#29678@#observeMappings": {};
|
|
1138
|
+
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) => 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) & ((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);
|
|
1139
|
+
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) => 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) & ((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);
|
|
1140
|
+
"__#29680@#lastBaseUrl"?: string;
|
|
1141
|
+
"__#29680@#workingBaseUrl"?: string;
|
|
1142
|
+
"__#29680@#getResourceUrls": ((filename: string) => (URL & {
|
|
1143
|
+
baseUrl: string;
|
|
1144
|
+
}) | (URL & {
|
|
1145
|
+
baseUrl: string;
|
|
1146
|
+
})[]) & ((filename: string) => (URL & {
|
|
1039
1147
|
baseUrl: string;
|
|
1040
1148
|
}) | (URL & {
|
|
1041
1149
|
baseUrl: string;
|
|
@@ -1072,6 +1180,9 @@ declare const UserProfileWidget: {
|
|
|
1072
1180
|
}>) & (<F_3 extends "text" | "json">(filename: string, format: F_3) => Promise<{
|
|
1073
1181
|
body: F_3 extends "json" ? Record<string, any> : string;
|
|
1074
1182
|
headers: Record<string, string>;
|
|
1183
|
+
}>) & (<F_4 extends "text" | "json">(filename: string, format: F_4) => Promise<{
|
|
1184
|
+
body: F_4 extends "json" ? Record<string, any> : string;
|
|
1185
|
+
headers: Record<string, string>;
|
|
1075
1186
|
}>) & (<F_1_1 extends "text" | "json">(filename: string, format: F_1_1) => Promise<{
|
|
1076
1187
|
body: F_1_1 extends "json" ? Record<string, any> : string;
|
|
1077
1188
|
headers: Record<string, string>;
|
|
@@ -1112,17 +1223,28 @@ declare const UserProfileWidget: {
|
|
|
1112
1223
|
ref: HTMLElement | ShadowRoot;
|
|
1113
1224
|
replaceSync(cssString: string): void;
|
|
1114
1225
|
readonly cssRules: CSSRuleList;
|
|
1226
|
+
}) & ((cssString: string, { prepend }?: {
|
|
1227
|
+
prepend?: boolean;
|
|
1228
|
+
}) => CSSStyleSheet | {
|
|
1229
|
+
styleEle: HTMLStyleElement;
|
|
1230
|
+
ref: HTMLElement | ShadowRoot;
|
|
1231
|
+
replaceSync(cssString: string): void;
|
|
1232
|
+
readonly cssRules: CSSRuleList;
|
|
1115
1233
|
});
|
|
1116
|
-
"__#
|
|
1117
|
-
"__#7@#initWidgetRoot": (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
|
|
1234
|
+
"__#29683@#setNonce": (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1118
1235
|
state: State;
|
|
1119
1236
|
"__#5@#api": {
|
|
1120
1237
|
user: {
|
|
1121
1238
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1122
1239
|
me: () => Promise<any>;
|
|
1123
1240
|
};
|
|
1241
|
+
device: {
|
|
1242
|
+
devices: ({ userId }: {
|
|
1243
|
+
userId: string;
|
|
1244
|
+
}) => Promise<any>;
|
|
1245
|
+
};
|
|
1124
1246
|
};
|
|
1125
|
-
"__#5@#createSdk": (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1247
|
+
"__#5@#createSdk": (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
1126
1248
|
readonly widgetId: string;
|
|
1127
1249
|
readonly mock: string;
|
|
1128
1250
|
readonly api: {
|
|
@@ -1130,9 +1252,39 @@ declare const UserProfileWidget: {
|
|
|
1130
1252
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1131
1253
|
me: () => Promise<any>;
|
|
1132
1254
|
};
|
|
1255
|
+
device: {
|
|
1256
|
+
devices: ({ userId }: {
|
|
1257
|
+
userId: string;
|
|
1258
|
+
}) => Promise<any>;
|
|
1259
|
+
};
|
|
1133
1260
|
};
|
|
1134
1261
|
readonly refreshCookieName: string;
|
|
1135
|
-
actions: _reduxjs_toolkit.CaseReducerActions<{
|
|
1262
|
+
actions: _reduxjs_toolkit.CaseReducerActions<{
|
|
1263
|
+
clearNotifications: (state: {
|
|
1264
|
+
me: {
|
|
1265
|
+
loading: boolean;
|
|
1266
|
+
error: unknown;
|
|
1267
|
+
data: {
|
|
1268
|
+
[x: string]: any;
|
|
1269
|
+
};
|
|
1270
|
+
};
|
|
1271
|
+
devices: {
|
|
1272
|
+
loading: boolean;
|
|
1273
|
+
error: unknown;
|
|
1274
|
+
data: {
|
|
1275
|
+
id: string;
|
|
1276
|
+
name: string;
|
|
1277
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1278
|
+
isCurrentDevice: boolean;
|
|
1279
|
+
lastLoginTime: string;
|
|
1280
|
+
}[];
|
|
1281
|
+
};
|
|
1282
|
+
notifications: {
|
|
1283
|
+
type: "success" | "error";
|
|
1284
|
+
msg: string;
|
|
1285
|
+
}[];
|
|
1286
|
+
}) => void;
|
|
1287
|
+
}, "widget"> & {
|
|
1136
1288
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1137
1289
|
extra: {
|
|
1138
1290
|
api: {
|
|
@@ -1140,6 +1292,11 @@ declare const UserProfileWidget: {
|
|
|
1140
1292
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1141
1293
|
me: () => Promise<any>;
|
|
1142
1294
|
};
|
|
1295
|
+
device: {
|
|
1296
|
+
devices: ({ userId }: {
|
|
1297
|
+
userId: string;
|
|
1298
|
+
}) => Promise<any>;
|
|
1299
|
+
};
|
|
1143
1300
|
};
|
|
1144
1301
|
};
|
|
1145
1302
|
state?: unknown;
|
|
@@ -1150,13 +1307,20 @@ declare const UserProfileWidget: {
|
|
|
1150
1307
|
fulfilledMeta?: unknown;
|
|
1151
1308
|
rejectedMeta?: unknown;
|
|
1152
1309
|
}>;
|
|
1153
|
-
|
|
1310
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1311
|
+
userId: string;
|
|
1312
|
+
}, {
|
|
1154
1313
|
extra: {
|
|
1155
1314
|
api: {
|
|
1156
1315
|
user: {
|
|
1157
1316
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1158
1317
|
me: () => Promise<any>;
|
|
1159
1318
|
};
|
|
1319
|
+
device: {
|
|
1320
|
+
devices: ({ userId }: {
|
|
1321
|
+
userId: string;
|
|
1322
|
+
}) => Promise<any>;
|
|
1323
|
+
};
|
|
1160
1324
|
};
|
|
1161
1325
|
};
|
|
1162
1326
|
state?: unknown;
|
|
@@ -1167,14 +1331,18 @@ declare const UserProfileWidget: {
|
|
|
1167
1331
|
fulfilledMeta?: unknown;
|
|
1168
1332
|
rejectedMeta?: unknown;
|
|
1169
1333
|
}>;
|
|
1170
|
-
|
|
1171
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1334
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1172
1335
|
extra: {
|
|
1173
1336
|
api: {
|
|
1174
1337
|
user: {
|
|
1175
1338
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1176
1339
|
me: () => Promise<any>;
|
|
1177
1340
|
};
|
|
1341
|
+
device: {
|
|
1342
|
+
devices: ({ userId }: {
|
|
1343
|
+
userId: string;
|
|
1344
|
+
}) => Promise<any>;
|
|
1345
|
+
};
|
|
1178
1346
|
};
|
|
1179
1347
|
};
|
|
1180
1348
|
state?: unknown;
|
|
@@ -1185,13 +1353,44 @@ declare const UserProfileWidget: {
|
|
|
1185
1353
|
fulfilledMeta?: unknown;
|
|
1186
1354
|
rejectedMeta?: unknown;
|
|
1187
1355
|
}>;
|
|
1188
|
-
|
|
1356
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1357
|
+
clearNotifications: (state: {
|
|
1358
|
+
me: {
|
|
1359
|
+
loading: boolean;
|
|
1360
|
+
error: unknown;
|
|
1361
|
+
data: {
|
|
1362
|
+
[x: string]: any;
|
|
1363
|
+
};
|
|
1364
|
+
};
|
|
1365
|
+
devices: {
|
|
1366
|
+
loading: boolean;
|
|
1367
|
+
error: unknown;
|
|
1368
|
+
data: {
|
|
1369
|
+
id: string;
|
|
1370
|
+
name: string;
|
|
1371
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1372
|
+
isCurrentDevice: boolean;
|
|
1373
|
+
lastLoginTime: string;
|
|
1374
|
+
}[];
|
|
1375
|
+
};
|
|
1376
|
+
notifications: {
|
|
1377
|
+
type: "success" | "error";
|
|
1378
|
+
msg: string;
|
|
1379
|
+
}[];
|
|
1380
|
+
}) => void;
|
|
1381
|
+
}, "widget"> & {
|
|
1382
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1189
1383
|
extra: {
|
|
1190
1384
|
api: {
|
|
1191
1385
|
user: {
|
|
1192
1386
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1193
1387
|
me: () => Promise<any>;
|
|
1194
1388
|
};
|
|
1389
|
+
device: {
|
|
1390
|
+
devices: ({ userId }: {
|
|
1391
|
+
userId: string;
|
|
1392
|
+
}) => Promise<any>;
|
|
1393
|
+
};
|
|
1195
1394
|
};
|
|
1196
1395
|
};
|
|
1197
1396
|
state?: unknown;
|
|
@@ -1202,14 +1401,20 @@ declare const UserProfileWidget: {
|
|
|
1202
1401
|
fulfilledMeta?: unknown;
|
|
1203
1402
|
rejectedMeta?: unknown;
|
|
1204
1403
|
}>;
|
|
1205
|
-
|
|
1206
|
-
|
|
1404
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1405
|
+
userId: string;
|
|
1406
|
+
}, {
|
|
1207
1407
|
extra: {
|
|
1208
1408
|
api: {
|
|
1209
1409
|
user: {
|
|
1210
1410
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1211
1411
|
me: () => Promise<any>;
|
|
1212
1412
|
};
|
|
1413
|
+
device: {
|
|
1414
|
+
devices: ({ userId }: {
|
|
1415
|
+
userId: string;
|
|
1416
|
+
}) => Promise<any>;
|
|
1417
|
+
};
|
|
1213
1418
|
};
|
|
1214
1419
|
};
|
|
1215
1420
|
state?: unknown;
|
|
@@ -1227,6 +1432,11 @@ declare const UserProfileWidget: {
|
|
|
1227
1432
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1228
1433
|
me: () => Promise<any>;
|
|
1229
1434
|
};
|
|
1435
|
+
device: {
|
|
1436
|
+
devices: ({ userId }: {
|
|
1437
|
+
userId: string;
|
|
1438
|
+
}) => Promise<any>;
|
|
1439
|
+
};
|
|
1230
1440
|
};
|
|
1231
1441
|
};
|
|
1232
1442
|
state?: unknown;
|
|
@@ -1237,7 +1447,32 @@ declare const UserProfileWidget: {
|
|
|
1237
1447
|
fulfilledMeta?: unknown;
|
|
1238
1448
|
rejectedMeta?: unknown;
|
|
1239
1449
|
}>;
|
|
1240
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1450
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1451
|
+
clearNotifications: (state: {
|
|
1452
|
+
me: {
|
|
1453
|
+
loading: boolean;
|
|
1454
|
+
error: unknown;
|
|
1455
|
+
data: {
|
|
1456
|
+
[x: string]: any;
|
|
1457
|
+
};
|
|
1458
|
+
};
|
|
1459
|
+
devices: {
|
|
1460
|
+
loading: boolean;
|
|
1461
|
+
error: unknown;
|
|
1462
|
+
data: {
|
|
1463
|
+
id: string;
|
|
1464
|
+
name: string;
|
|
1465
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1466
|
+
isCurrentDevice: boolean;
|
|
1467
|
+
lastLoginTime: string;
|
|
1468
|
+
}[];
|
|
1469
|
+
};
|
|
1470
|
+
notifications: {
|
|
1471
|
+
type: "success" | "error";
|
|
1472
|
+
msg: string;
|
|
1473
|
+
}[];
|
|
1474
|
+
}) => void;
|
|
1475
|
+
}, "widget"> & {
|
|
1241
1476
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1242
1477
|
extra: {
|
|
1243
1478
|
api: {
|
|
@@ -1245,6 +1480,11 @@ declare const UserProfileWidget: {
|
|
|
1245
1480
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1246
1481
|
me: () => Promise<any>;
|
|
1247
1482
|
};
|
|
1483
|
+
device: {
|
|
1484
|
+
devices: ({ userId }: {
|
|
1485
|
+
userId: string;
|
|
1486
|
+
}) => Promise<any>;
|
|
1487
|
+
};
|
|
1248
1488
|
};
|
|
1249
1489
|
};
|
|
1250
1490
|
state?: unknown;
|
|
@@ -1255,13 +1495,20 @@ declare const UserProfileWidget: {
|
|
|
1255
1495
|
fulfilledMeta?: unknown;
|
|
1256
1496
|
rejectedMeta?: unknown;
|
|
1257
1497
|
}>;
|
|
1258
|
-
|
|
1498
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1499
|
+
userId: string;
|
|
1500
|
+
}, {
|
|
1259
1501
|
extra: {
|
|
1260
1502
|
api: {
|
|
1261
1503
|
user: {
|
|
1262
1504
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1263
1505
|
me: () => Promise<any>;
|
|
1264
1506
|
};
|
|
1507
|
+
device: {
|
|
1508
|
+
devices: ({ userId }: {
|
|
1509
|
+
userId: string;
|
|
1510
|
+
}) => Promise<any>;
|
|
1511
|
+
};
|
|
1265
1512
|
};
|
|
1266
1513
|
};
|
|
1267
1514
|
state?: unknown;
|
|
@@ -1272,14 +1519,18 @@ declare const UserProfileWidget: {
|
|
|
1272
1519
|
fulfilledMeta?: unknown;
|
|
1273
1520
|
rejectedMeta?: unknown;
|
|
1274
1521
|
}>;
|
|
1275
|
-
|
|
1276
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1522
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1277
1523
|
extra: {
|
|
1278
1524
|
api: {
|
|
1279
1525
|
user: {
|
|
1280
1526
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1281
1527
|
me: () => Promise<any>;
|
|
1282
1528
|
};
|
|
1529
|
+
device: {
|
|
1530
|
+
devices: ({ userId }: {
|
|
1531
|
+
userId: string;
|
|
1532
|
+
}) => Promise<any>;
|
|
1533
|
+
};
|
|
1283
1534
|
};
|
|
1284
1535
|
};
|
|
1285
1536
|
state?: unknown;
|
|
@@ -1290,13 +1541,44 @@ declare const UserProfileWidget: {
|
|
|
1290
1541
|
fulfilledMeta?: unknown;
|
|
1291
1542
|
rejectedMeta?: unknown;
|
|
1292
1543
|
}>;
|
|
1293
|
-
|
|
1544
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1545
|
+
clearNotifications: (state: {
|
|
1546
|
+
me: {
|
|
1547
|
+
loading: boolean;
|
|
1548
|
+
error: unknown;
|
|
1549
|
+
data: {
|
|
1550
|
+
[x: string]: any;
|
|
1551
|
+
};
|
|
1552
|
+
};
|
|
1553
|
+
devices: {
|
|
1554
|
+
loading: boolean;
|
|
1555
|
+
error: unknown;
|
|
1556
|
+
data: {
|
|
1557
|
+
id: string;
|
|
1558
|
+
name: string;
|
|
1559
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1560
|
+
isCurrentDevice: boolean;
|
|
1561
|
+
lastLoginTime: string;
|
|
1562
|
+
}[];
|
|
1563
|
+
};
|
|
1564
|
+
notifications: {
|
|
1565
|
+
type: "success" | "error";
|
|
1566
|
+
msg: string;
|
|
1567
|
+
}[];
|
|
1568
|
+
}) => void;
|
|
1569
|
+
}, "widget"> & {
|
|
1570
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1294
1571
|
extra: {
|
|
1295
1572
|
api: {
|
|
1296
1573
|
user: {
|
|
1297
1574
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1298
1575
|
me: () => Promise<any>;
|
|
1299
1576
|
};
|
|
1577
|
+
device: {
|
|
1578
|
+
devices: ({ userId }: {
|
|
1579
|
+
userId: string;
|
|
1580
|
+
}) => Promise<any>;
|
|
1581
|
+
};
|
|
1300
1582
|
};
|
|
1301
1583
|
};
|
|
1302
1584
|
state?: unknown;
|
|
@@ -1307,14 +1589,20 @@ declare const UserProfileWidget: {
|
|
|
1307
1589
|
fulfilledMeta?: unknown;
|
|
1308
1590
|
rejectedMeta?: unknown;
|
|
1309
1591
|
}>;
|
|
1310
|
-
|
|
1311
|
-
|
|
1592
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1593
|
+
userId: string;
|
|
1594
|
+
}, {
|
|
1312
1595
|
extra: {
|
|
1313
1596
|
api: {
|
|
1314
1597
|
user: {
|
|
1315
1598
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1316
1599
|
me: () => Promise<any>;
|
|
1317
1600
|
};
|
|
1601
|
+
device: {
|
|
1602
|
+
devices: ({ userId }: {
|
|
1603
|
+
userId: string;
|
|
1604
|
+
}) => Promise<any>;
|
|
1605
|
+
};
|
|
1318
1606
|
};
|
|
1319
1607
|
};
|
|
1320
1608
|
state?: unknown;
|
|
@@ -1332,6 +1620,11 @@ declare const UserProfileWidget: {
|
|
|
1332
1620
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1333
1621
|
me: () => Promise<any>;
|
|
1334
1622
|
};
|
|
1623
|
+
device: {
|
|
1624
|
+
devices: ({ userId }: {
|
|
1625
|
+
userId: string;
|
|
1626
|
+
}) => Promise<any>;
|
|
1627
|
+
};
|
|
1335
1628
|
};
|
|
1336
1629
|
};
|
|
1337
1630
|
state?: unknown;
|
|
@@ -1342,7 +1635,32 @@ declare const UserProfileWidget: {
|
|
|
1342
1635
|
fulfilledMeta?: unknown;
|
|
1343
1636
|
rejectedMeta?: unknown;
|
|
1344
1637
|
}>;
|
|
1345
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1638
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1639
|
+
clearNotifications: (state: {
|
|
1640
|
+
me: {
|
|
1641
|
+
loading: boolean;
|
|
1642
|
+
error: unknown;
|
|
1643
|
+
data: {
|
|
1644
|
+
[x: string]: any;
|
|
1645
|
+
};
|
|
1646
|
+
};
|
|
1647
|
+
devices: {
|
|
1648
|
+
loading: boolean;
|
|
1649
|
+
error: unknown;
|
|
1650
|
+
data: {
|
|
1651
|
+
id: string;
|
|
1652
|
+
name: string;
|
|
1653
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1654
|
+
isCurrentDevice: boolean;
|
|
1655
|
+
lastLoginTime: string;
|
|
1656
|
+
}[];
|
|
1657
|
+
};
|
|
1658
|
+
notifications: {
|
|
1659
|
+
type: "success" | "error";
|
|
1660
|
+
msg: string;
|
|
1661
|
+
}[];
|
|
1662
|
+
}) => void;
|
|
1663
|
+
}, "widget"> & {
|
|
1346
1664
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1347
1665
|
extra: {
|
|
1348
1666
|
api: {
|
|
@@ -1350,6 +1668,11 @@ declare const UserProfileWidget: {
|
|
|
1350
1668
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1351
1669
|
me: () => Promise<any>;
|
|
1352
1670
|
};
|
|
1671
|
+
device: {
|
|
1672
|
+
devices: ({ userId }: {
|
|
1673
|
+
userId: string;
|
|
1674
|
+
}) => Promise<any>;
|
|
1675
|
+
};
|
|
1353
1676
|
};
|
|
1354
1677
|
};
|
|
1355
1678
|
state?: unknown;
|
|
@@ -1360,13 +1683,20 @@ declare const UserProfileWidget: {
|
|
|
1360
1683
|
fulfilledMeta?: unknown;
|
|
1361
1684
|
rejectedMeta?: unknown;
|
|
1362
1685
|
}>;
|
|
1363
|
-
|
|
1686
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1687
|
+
userId: string;
|
|
1688
|
+
}, {
|
|
1364
1689
|
extra: {
|
|
1365
1690
|
api: {
|
|
1366
1691
|
user: {
|
|
1367
1692
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1368
1693
|
me: () => Promise<any>;
|
|
1369
1694
|
};
|
|
1695
|
+
device: {
|
|
1696
|
+
devices: ({ userId }: {
|
|
1697
|
+
userId: string;
|
|
1698
|
+
}) => Promise<any>;
|
|
1699
|
+
};
|
|
1370
1700
|
};
|
|
1371
1701
|
};
|
|
1372
1702
|
state?: unknown;
|
|
@@ -1377,14 +1707,18 @@ declare const UserProfileWidget: {
|
|
|
1377
1707
|
fulfilledMeta?: unknown;
|
|
1378
1708
|
rejectedMeta?: unknown;
|
|
1379
1709
|
}>;
|
|
1380
|
-
|
|
1381
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1710
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1382
1711
|
extra: {
|
|
1383
1712
|
api: {
|
|
1384
1713
|
user: {
|
|
1385
1714
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1386
1715
|
me: () => Promise<any>;
|
|
1387
1716
|
};
|
|
1717
|
+
device: {
|
|
1718
|
+
devices: ({ userId }: {
|
|
1719
|
+
userId: string;
|
|
1720
|
+
}) => Promise<any>;
|
|
1721
|
+
};
|
|
1388
1722
|
};
|
|
1389
1723
|
};
|
|
1390
1724
|
state?: unknown;
|
|
@@ -1395,13 +1729,44 @@ declare const UserProfileWidget: {
|
|
|
1395
1729
|
fulfilledMeta?: unknown;
|
|
1396
1730
|
rejectedMeta?: unknown;
|
|
1397
1731
|
}>;
|
|
1398
|
-
|
|
1732
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1733
|
+
clearNotifications: (state: {
|
|
1734
|
+
me: {
|
|
1735
|
+
loading: boolean;
|
|
1736
|
+
error: unknown;
|
|
1737
|
+
data: {
|
|
1738
|
+
[x: string]: any;
|
|
1739
|
+
};
|
|
1740
|
+
};
|
|
1741
|
+
devices: {
|
|
1742
|
+
loading: boolean;
|
|
1743
|
+
error: unknown;
|
|
1744
|
+
data: {
|
|
1745
|
+
id: string;
|
|
1746
|
+
name: string;
|
|
1747
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1748
|
+
isCurrentDevice: boolean;
|
|
1749
|
+
lastLoginTime: string;
|
|
1750
|
+
}[];
|
|
1751
|
+
};
|
|
1752
|
+
notifications: {
|
|
1753
|
+
type: "success" | "error";
|
|
1754
|
+
msg: string;
|
|
1755
|
+
}[];
|
|
1756
|
+
}) => void;
|
|
1757
|
+
}, "widget"> & {
|
|
1758
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1399
1759
|
extra: {
|
|
1400
1760
|
api: {
|
|
1401
1761
|
user: {
|
|
1402
1762
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1403
1763
|
me: () => Promise<any>;
|
|
1404
1764
|
};
|
|
1765
|
+
device: {
|
|
1766
|
+
devices: ({ userId }: {
|
|
1767
|
+
userId: string;
|
|
1768
|
+
}) => Promise<any>;
|
|
1769
|
+
};
|
|
1405
1770
|
};
|
|
1406
1771
|
};
|
|
1407
1772
|
state?: unknown;
|
|
@@ -1412,14 +1777,20 @@ declare const UserProfileWidget: {
|
|
|
1412
1777
|
fulfilledMeta?: unknown;
|
|
1413
1778
|
rejectedMeta?: unknown;
|
|
1414
1779
|
}>;
|
|
1415
|
-
|
|
1416
|
-
|
|
1780
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1781
|
+
userId: string;
|
|
1782
|
+
}, {
|
|
1417
1783
|
extra: {
|
|
1418
1784
|
api: {
|
|
1419
1785
|
user: {
|
|
1420
1786
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1421
1787
|
me: () => Promise<any>;
|
|
1422
1788
|
};
|
|
1789
|
+
device: {
|
|
1790
|
+
devices: ({ userId }: {
|
|
1791
|
+
userId: string;
|
|
1792
|
+
}) => Promise<any>;
|
|
1793
|
+
};
|
|
1423
1794
|
};
|
|
1424
1795
|
};
|
|
1425
1796
|
state?: unknown;
|
|
@@ -1437,6 +1808,11 @@ declare const UserProfileWidget: {
|
|
|
1437
1808
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1438
1809
|
me: () => Promise<any>;
|
|
1439
1810
|
};
|
|
1811
|
+
device: {
|
|
1812
|
+
devices: ({ userId }: {
|
|
1813
|
+
userId: string;
|
|
1814
|
+
}) => Promise<any>;
|
|
1815
|
+
};
|
|
1440
1816
|
};
|
|
1441
1817
|
};
|
|
1442
1818
|
state?: unknown;
|
|
@@ -1447,7 +1823,32 @@ declare const UserProfileWidget: {
|
|
|
1447
1823
|
fulfilledMeta?: unknown;
|
|
1448
1824
|
rejectedMeta?: unknown;
|
|
1449
1825
|
}>;
|
|
1450
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1826
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1827
|
+
clearNotifications: (state: {
|
|
1828
|
+
me: {
|
|
1829
|
+
loading: boolean;
|
|
1830
|
+
error: unknown;
|
|
1831
|
+
data: {
|
|
1832
|
+
[x: string]: any;
|
|
1833
|
+
};
|
|
1834
|
+
};
|
|
1835
|
+
devices: {
|
|
1836
|
+
loading: boolean;
|
|
1837
|
+
error: unknown;
|
|
1838
|
+
data: {
|
|
1839
|
+
id: string;
|
|
1840
|
+
name: string;
|
|
1841
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1842
|
+
isCurrentDevice: boolean;
|
|
1843
|
+
lastLoginTime: string;
|
|
1844
|
+
}[];
|
|
1845
|
+
};
|
|
1846
|
+
notifications: {
|
|
1847
|
+
type: "success" | "error";
|
|
1848
|
+
msg: string;
|
|
1849
|
+
}[];
|
|
1850
|
+
}) => void;
|
|
1851
|
+
}, "widget"> & {
|
|
1451
1852
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1452
1853
|
extra: {
|
|
1453
1854
|
api: {
|
|
@@ -1455,6 +1856,11 @@ declare const UserProfileWidget: {
|
|
|
1455
1856
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1456
1857
|
me: () => Promise<any>;
|
|
1457
1858
|
};
|
|
1859
|
+
device: {
|
|
1860
|
+
devices: ({ userId }: {
|
|
1861
|
+
userId: string;
|
|
1862
|
+
}) => Promise<any>;
|
|
1863
|
+
};
|
|
1458
1864
|
};
|
|
1459
1865
|
};
|
|
1460
1866
|
state?: unknown;
|
|
@@ -1465,13 +1871,20 @@ declare const UserProfileWidget: {
|
|
|
1465
1871
|
fulfilledMeta?: unknown;
|
|
1466
1872
|
rejectedMeta?: unknown;
|
|
1467
1873
|
}>;
|
|
1468
|
-
|
|
1874
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1875
|
+
userId: string;
|
|
1876
|
+
}, {
|
|
1469
1877
|
extra: {
|
|
1470
1878
|
api: {
|
|
1471
1879
|
user: {
|
|
1472
1880
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1473
1881
|
me: () => Promise<any>;
|
|
1474
1882
|
};
|
|
1883
|
+
device: {
|
|
1884
|
+
devices: ({ userId }: {
|
|
1885
|
+
userId: string;
|
|
1886
|
+
}) => Promise<any>;
|
|
1887
|
+
};
|
|
1475
1888
|
};
|
|
1476
1889
|
};
|
|
1477
1890
|
state?: unknown;
|
|
@@ -1482,14 +1895,18 @@ declare const UserProfileWidget: {
|
|
|
1482
1895
|
fulfilledMeta?: unknown;
|
|
1483
1896
|
rejectedMeta?: unknown;
|
|
1484
1897
|
}>;
|
|
1485
|
-
|
|
1486
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1898
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1487
1899
|
extra: {
|
|
1488
1900
|
api: {
|
|
1489
1901
|
user: {
|
|
1490
1902
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1491
1903
|
me: () => Promise<any>;
|
|
1492
1904
|
};
|
|
1905
|
+
device: {
|
|
1906
|
+
devices: ({ userId }: {
|
|
1907
|
+
userId: string;
|
|
1908
|
+
}) => Promise<any>;
|
|
1909
|
+
};
|
|
1493
1910
|
};
|
|
1494
1911
|
};
|
|
1495
1912
|
state?: unknown;
|
|
@@ -1500,13 +1917,44 @@ declare const UserProfileWidget: {
|
|
|
1500
1917
|
fulfilledMeta?: unknown;
|
|
1501
1918
|
rejectedMeta?: unknown;
|
|
1502
1919
|
}>;
|
|
1503
|
-
|
|
1920
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
1921
|
+
clearNotifications: (state: {
|
|
1922
|
+
me: {
|
|
1923
|
+
loading: boolean;
|
|
1924
|
+
error: unknown;
|
|
1925
|
+
data: {
|
|
1926
|
+
[x: string]: any;
|
|
1927
|
+
};
|
|
1928
|
+
};
|
|
1929
|
+
devices: {
|
|
1930
|
+
loading: boolean;
|
|
1931
|
+
error: unknown;
|
|
1932
|
+
data: {
|
|
1933
|
+
id: string;
|
|
1934
|
+
name: string;
|
|
1935
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
1936
|
+
isCurrentDevice: boolean;
|
|
1937
|
+
lastLoginTime: string;
|
|
1938
|
+
}[];
|
|
1939
|
+
};
|
|
1940
|
+
notifications: {
|
|
1941
|
+
type: "success" | "error";
|
|
1942
|
+
msg: string;
|
|
1943
|
+
}[];
|
|
1944
|
+
}) => void;
|
|
1945
|
+
}, "widget"> & {
|
|
1946
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1504
1947
|
extra: {
|
|
1505
1948
|
api: {
|
|
1506
1949
|
user: {
|
|
1507
1950
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1508
1951
|
me: () => Promise<any>;
|
|
1509
1952
|
};
|
|
1953
|
+
device: {
|
|
1954
|
+
devices: ({ userId }: {
|
|
1955
|
+
userId: string;
|
|
1956
|
+
}) => Promise<any>;
|
|
1957
|
+
};
|
|
1510
1958
|
};
|
|
1511
1959
|
};
|
|
1512
1960
|
state?: unknown;
|
|
@@ -1517,14 +1965,20 @@ declare const UserProfileWidget: {
|
|
|
1517
1965
|
fulfilledMeta?: unknown;
|
|
1518
1966
|
rejectedMeta?: unknown;
|
|
1519
1967
|
}>;
|
|
1520
|
-
|
|
1521
|
-
|
|
1968
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
1969
|
+
userId: string;
|
|
1970
|
+
}, {
|
|
1522
1971
|
extra: {
|
|
1523
1972
|
api: {
|
|
1524
1973
|
user: {
|
|
1525
1974
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1526
1975
|
me: () => Promise<any>;
|
|
1527
1976
|
};
|
|
1977
|
+
device: {
|
|
1978
|
+
devices: ({ userId }: {
|
|
1979
|
+
userId: string;
|
|
1980
|
+
}) => Promise<any>;
|
|
1981
|
+
};
|
|
1528
1982
|
};
|
|
1529
1983
|
};
|
|
1530
1984
|
state?: unknown;
|
|
@@ -1542,6 +1996,11 @@ declare const UserProfileWidget: {
|
|
|
1542
1996
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1543
1997
|
me: () => Promise<any>;
|
|
1544
1998
|
};
|
|
1999
|
+
device: {
|
|
2000
|
+
devices: ({ userId }: {
|
|
2001
|
+
userId: string;
|
|
2002
|
+
}) => Promise<any>;
|
|
2003
|
+
};
|
|
1545
2004
|
};
|
|
1546
2005
|
};
|
|
1547
2006
|
state?: unknown;
|
|
@@ -1552,7 +2011,32 @@ declare const UserProfileWidget: {
|
|
|
1552
2011
|
fulfilledMeta?: unknown;
|
|
1553
2012
|
rejectedMeta?: unknown;
|
|
1554
2013
|
}>;
|
|
1555
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2014
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2015
|
+
clearNotifications: (state: {
|
|
2016
|
+
me: {
|
|
2017
|
+
loading: boolean;
|
|
2018
|
+
error: unknown;
|
|
2019
|
+
data: {
|
|
2020
|
+
[x: string]: any;
|
|
2021
|
+
};
|
|
2022
|
+
};
|
|
2023
|
+
devices: {
|
|
2024
|
+
loading: boolean;
|
|
2025
|
+
error: unknown;
|
|
2026
|
+
data: {
|
|
2027
|
+
id: string;
|
|
2028
|
+
name: string;
|
|
2029
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2030
|
+
isCurrentDevice: boolean;
|
|
2031
|
+
lastLoginTime: string;
|
|
2032
|
+
}[];
|
|
2033
|
+
};
|
|
2034
|
+
notifications: {
|
|
2035
|
+
type: "success" | "error";
|
|
2036
|
+
msg: string;
|
|
2037
|
+
}[];
|
|
2038
|
+
}) => void;
|
|
2039
|
+
}, "widget"> & {
|
|
1556
2040
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1557
2041
|
extra: {
|
|
1558
2042
|
api: {
|
|
@@ -1560,6 +2044,11 @@ declare const UserProfileWidget: {
|
|
|
1560
2044
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1561
2045
|
me: () => Promise<any>;
|
|
1562
2046
|
};
|
|
2047
|
+
device: {
|
|
2048
|
+
devices: ({ userId }: {
|
|
2049
|
+
userId: string;
|
|
2050
|
+
}) => Promise<any>;
|
|
2051
|
+
};
|
|
1563
2052
|
};
|
|
1564
2053
|
};
|
|
1565
2054
|
state?: unknown;
|
|
@@ -1570,13 +2059,20 @@ declare const UserProfileWidget: {
|
|
|
1570
2059
|
fulfilledMeta?: unknown;
|
|
1571
2060
|
rejectedMeta?: unknown;
|
|
1572
2061
|
}>;
|
|
1573
|
-
|
|
2062
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2063
|
+
userId: string;
|
|
2064
|
+
}, {
|
|
1574
2065
|
extra: {
|
|
1575
2066
|
api: {
|
|
1576
2067
|
user: {
|
|
1577
2068
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1578
2069
|
me: () => Promise<any>;
|
|
1579
2070
|
};
|
|
2071
|
+
device: {
|
|
2072
|
+
devices: ({ userId }: {
|
|
2073
|
+
userId: string;
|
|
2074
|
+
}) => Promise<any>;
|
|
2075
|
+
};
|
|
1580
2076
|
};
|
|
1581
2077
|
};
|
|
1582
2078
|
state?: unknown;
|
|
@@ -1587,14 +2083,18 @@ declare const UserProfileWidget: {
|
|
|
1587
2083
|
fulfilledMeta?: unknown;
|
|
1588
2084
|
rejectedMeta?: unknown;
|
|
1589
2085
|
}>;
|
|
1590
|
-
|
|
1591
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2086
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1592
2087
|
extra: {
|
|
1593
2088
|
api: {
|
|
1594
2089
|
user: {
|
|
1595
2090
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1596
2091
|
me: () => Promise<any>;
|
|
1597
2092
|
};
|
|
2093
|
+
device: {
|
|
2094
|
+
devices: ({ userId }: {
|
|
2095
|
+
userId: string;
|
|
2096
|
+
}) => Promise<any>;
|
|
2097
|
+
};
|
|
1598
2098
|
};
|
|
1599
2099
|
};
|
|
1600
2100
|
state?: unknown;
|
|
@@ -1605,13 +2105,44 @@ declare const UserProfileWidget: {
|
|
|
1605
2105
|
fulfilledMeta?: unknown;
|
|
1606
2106
|
rejectedMeta?: unknown;
|
|
1607
2107
|
}>;
|
|
1608
|
-
|
|
2108
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2109
|
+
clearNotifications: (state: {
|
|
2110
|
+
me: {
|
|
2111
|
+
loading: boolean;
|
|
2112
|
+
error: unknown;
|
|
2113
|
+
data: {
|
|
2114
|
+
[x: string]: any;
|
|
2115
|
+
};
|
|
2116
|
+
};
|
|
2117
|
+
devices: {
|
|
2118
|
+
loading: boolean;
|
|
2119
|
+
error: unknown;
|
|
2120
|
+
data: {
|
|
2121
|
+
id: string;
|
|
2122
|
+
name: string;
|
|
2123
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2124
|
+
isCurrentDevice: boolean;
|
|
2125
|
+
lastLoginTime: string;
|
|
2126
|
+
}[];
|
|
2127
|
+
};
|
|
2128
|
+
notifications: {
|
|
2129
|
+
type: "success" | "error";
|
|
2130
|
+
msg: string;
|
|
2131
|
+
}[];
|
|
2132
|
+
}) => void;
|
|
2133
|
+
}, "widget"> & {
|
|
2134
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1609
2135
|
extra: {
|
|
1610
2136
|
api: {
|
|
1611
2137
|
user: {
|
|
1612
2138
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1613
2139
|
me: () => Promise<any>;
|
|
1614
2140
|
};
|
|
2141
|
+
device: {
|
|
2142
|
+
devices: ({ userId }: {
|
|
2143
|
+
userId: string;
|
|
2144
|
+
}) => Promise<any>;
|
|
2145
|
+
};
|
|
1615
2146
|
};
|
|
1616
2147
|
};
|
|
1617
2148
|
state?: unknown;
|
|
@@ -1622,14 +2153,20 @@ declare const UserProfileWidget: {
|
|
|
1622
2153
|
fulfilledMeta?: unknown;
|
|
1623
2154
|
rejectedMeta?: unknown;
|
|
1624
2155
|
}>;
|
|
1625
|
-
|
|
1626
|
-
|
|
2156
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2157
|
+
userId: string;
|
|
2158
|
+
}, {
|
|
1627
2159
|
extra: {
|
|
1628
2160
|
api: {
|
|
1629
2161
|
user: {
|
|
1630
2162
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1631
2163
|
me: () => Promise<any>;
|
|
1632
2164
|
};
|
|
2165
|
+
device: {
|
|
2166
|
+
devices: ({ userId }: {
|
|
2167
|
+
userId: string;
|
|
2168
|
+
}) => Promise<any>;
|
|
2169
|
+
};
|
|
1633
2170
|
};
|
|
1634
2171
|
};
|
|
1635
2172
|
state?: unknown;
|
|
@@ -1647,6 +2184,11 @@ declare const UserProfileWidget: {
|
|
|
1647
2184
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1648
2185
|
me: () => Promise<any>;
|
|
1649
2186
|
};
|
|
2187
|
+
device: {
|
|
2188
|
+
devices: ({ userId }: {
|
|
2189
|
+
userId: string;
|
|
2190
|
+
}) => Promise<any>;
|
|
2191
|
+
};
|
|
1650
2192
|
};
|
|
1651
2193
|
};
|
|
1652
2194
|
state?: unknown;
|
|
@@ -1657,7 +2199,32 @@ declare const UserProfileWidget: {
|
|
|
1657
2199
|
fulfilledMeta?: unknown;
|
|
1658
2200
|
rejectedMeta?: unknown;
|
|
1659
2201
|
}>;
|
|
1660
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2202
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2203
|
+
clearNotifications: (state: {
|
|
2204
|
+
me: {
|
|
2205
|
+
loading: boolean;
|
|
2206
|
+
error: unknown;
|
|
2207
|
+
data: {
|
|
2208
|
+
[x: string]: any;
|
|
2209
|
+
};
|
|
2210
|
+
};
|
|
2211
|
+
devices: {
|
|
2212
|
+
loading: boolean;
|
|
2213
|
+
error: unknown;
|
|
2214
|
+
data: {
|
|
2215
|
+
id: string;
|
|
2216
|
+
name: string;
|
|
2217
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2218
|
+
isCurrentDevice: boolean;
|
|
2219
|
+
lastLoginTime: string;
|
|
2220
|
+
}[];
|
|
2221
|
+
};
|
|
2222
|
+
notifications: {
|
|
2223
|
+
type: "success" | "error";
|
|
2224
|
+
msg: string;
|
|
2225
|
+
}[];
|
|
2226
|
+
}) => void;
|
|
2227
|
+
}, "widget"> & {
|
|
1661
2228
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1662
2229
|
extra: {
|
|
1663
2230
|
api: {
|
|
@@ -1665,6 +2232,11 @@ declare const UserProfileWidget: {
|
|
|
1665
2232
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1666
2233
|
me: () => Promise<any>;
|
|
1667
2234
|
};
|
|
2235
|
+
device: {
|
|
2236
|
+
devices: ({ userId }: {
|
|
2237
|
+
userId: string;
|
|
2238
|
+
}) => Promise<any>;
|
|
2239
|
+
};
|
|
1668
2240
|
};
|
|
1669
2241
|
};
|
|
1670
2242
|
state?: unknown;
|
|
@@ -1675,13 +2247,20 @@ declare const UserProfileWidget: {
|
|
|
1675
2247
|
fulfilledMeta?: unknown;
|
|
1676
2248
|
rejectedMeta?: unknown;
|
|
1677
2249
|
}>;
|
|
1678
|
-
|
|
2250
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2251
|
+
userId: string;
|
|
2252
|
+
}, {
|
|
1679
2253
|
extra: {
|
|
1680
2254
|
api: {
|
|
1681
2255
|
user: {
|
|
1682
2256
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1683
2257
|
me: () => Promise<any>;
|
|
1684
2258
|
};
|
|
2259
|
+
device: {
|
|
2260
|
+
devices: ({ userId }: {
|
|
2261
|
+
userId: string;
|
|
2262
|
+
}) => Promise<any>;
|
|
2263
|
+
};
|
|
1685
2264
|
};
|
|
1686
2265
|
};
|
|
1687
2266
|
state?: unknown;
|
|
@@ -1692,14 +2271,18 @@ declare const UserProfileWidget: {
|
|
|
1692
2271
|
fulfilledMeta?: unknown;
|
|
1693
2272
|
rejectedMeta?: unknown;
|
|
1694
2273
|
}>;
|
|
1695
|
-
|
|
1696
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2274
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1697
2275
|
extra: {
|
|
1698
2276
|
api: {
|
|
1699
2277
|
user: {
|
|
1700
2278
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1701
2279
|
me: () => Promise<any>;
|
|
1702
2280
|
};
|
|
2281
|
+
device: {
|
|
2282
|
+
devices: ({ userId }: {
|
|
2283
|
+
userId: string;
|
|
2284
|
+
}) => Promise<any>;
|
|
2285
|
+
};
|
|
1703
2286
|
};
|
|
1704
2287
|
};
|
|
1705
2288
|
state?: unknown;
|
|
@@ -1710,13 +2293,44 @@ declare const UserProfileWidget: {
|
|
|
1710
2293
|
fulfilledMeta?: unknown;
|
|
1711
2294
|
rejectedMeta?: unknown;
|
|
1712
2295
|
}>;
|
|
1713
|
-
|
|
2296
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2297
|
+
clearNotifications: (state: {
|
|
2298
|
+
me: {
|
|
2299
|
+
loading: boolean;
|
|
2300
|
+
error: unknown;
|
|
2301
|
+
data: {
|
|
2302
|
+
[x: string]: any;
|
|
2303
|
+
};
|
|
2304
|
+
};
|
|
2305
|
+
devices: {
|
|
2306
|
+
loading: boolean;
|
|
2307
|
+
error: unknown;
|
|
2308
|
+
data: {
|
|
2309
|
+
id: string;
|
|
2310
|
+
name: string;
|
|
2311
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2312
|
+
isCurrentDevice: boolean;
|
|
2313
|
+
lastLoginTime: string;
|
|
2314
|
+
}[];
|
|
2315
|
+
};
|
|
2316
|
+
notifications: {
|
|
2317
|
+
type: "success" | "error";
|
|
2318
|
+
msg: string;
|
|
2319
|
+
}[];
|
|
2320
|
+
}) => void;
|
|
2321
|
+
}, "widget"> & {
|
|
2322
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1714
2323
|
extra: {
|
|
1715
2324
|
api: {
|
|
1716
2325
|
user: {
|
|
1717
2326
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1718
2327
|
me: () => Promise<any>;
|
|
1719
2328
|
};
|
|
2329
|
+
device: {
|
|
2330
|
+
devices: ({ userId }: {
|
|
2331
|
+
userId: string;
|
|
2332
|
+
}) => Promise<any>;
|
|
2333
|
+
};
|
|
1720
2334
|
};
|
|
1721
2335
|
};
|
|
1722
2336
|
state?: unknown;
|
|
@@ -1727,14 +2341,20 @@ declare const UserProfileWidget: {
|
|
|
1727
2341
|
fulfilledMeta?: unknown;
|
|
1728
2342
|
rejectedMeta?: unknown;
|
|
1729
2343
|
}>;
|
|
1730
|
-
|
|
1731
|
-
|
|
2344
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2345
|
+
userId: string;
|
|
2346
|
+
}, {
|
|
1732
2347
|
extra: {
|
|
1733
2348
|
api: {
|
|
1734
2349
|
user: {
|
|
1735
2350
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1736
2351
|
me: () => Promise<any>;
|
|
1737
2352
|
};
|
|
2353
|
+
device: {
|
|
2354
|
+
devices: ({ userId }: {
|
|
2355
|
+
userId: string;
|
|
2356
|
+
}) => Promise<any>;
|
|
2357
|
+
};
|
|
1738
2358
|
};
|
|
1739
2359
|
};
|
|
1740
2360
|
state?: unknown;
|
|
@@ -1752,6 +2372,11 @@ declare const UserProfileWidget: {
|
|
|
1752
2372
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1753
2373
|
me: () => Promise<any>;
|
|
1754
2374
|
};
|
|
2375
|
+
device: {
|
|
2376
|
+
devices: ({ userId }: {
|
|
2377
|
+
userId: string;
|
|
2378
|
+
}) => Promise<any>;
|
|
2379
|
+
};
|
|
1755
2380
|
};
|
|
1756
2381
|
};
|
|
1757
2382
|
state?: unknown;
|
|
@@ -1762,7 +2387,32 @@ declare const UserProfileWidget: {
|
|
|
1762
2387
|
fulfilledMeta?: unknown;
|
|
1763
2388
|
rejectedMeta?: unknown;
|
|
1764
2389
|
}>;
|
|
1765
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2390
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2391
|
+
clearNotifications: (state: {
|
|
2392
|
+
me: {
|
|
2393
|
+
loading: boolean;
|
|
2394
|
+
error: unknown;
|
|
2395
|
+
data: {
|
|
2396
|
+
[x: string]: any;
|
|
2397
|
+
};
|
|
2398
|
+
};
|
|
2399
|
+
devices: {
|
|
2400
|
+
loading: boolean;
|
|
2401
|
+
error: unknown;
|
|
2402
|
+
data: {
|
|
2403
|
+
id: string;
|
|
2404
|
+
name: string;
|
|
2405
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2406
|
+
isCurrentDevice: boolean;
|
|
2407
|
+
lastLoginTime: string;
|
|
2408
|
+
}[];
|
|
2409
|
+
};
|
|
2410
|
+
notifications: {
|
|
2411
|
+
type: "success" | "error";
|
|
2412
|
+
msg: string;
|
|
2413
|
+
}[];
|
|
2414
|
+
}) => void;
|
|
2415
|
+
}, "widget"> & {
|
|
1766
2416
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1767
2417
|
extra: {
|
|
1768
2418
|
api: {
|
|
@@ -1770,6 +2420,11 @@ declare const UserProfileWidget: {
|
|
|
1770
2420
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1771
2421
|
me: () => Promise<any>;
|
|
1772
2422
|
};
|
|
2423
|
+
device: {
|
|
2424
|
+
devices: ({ userId }: {
|
|
2425
|
+
userId: string;
|
|
2426
|
+
}) => Promise<any>;
|
|
2427
|
+
};
|
|
1773
2428
|
};
|
|
1774
2429
|
};
|
|
1775
2430
|
state?: unknown;
|
|
@@ -1780,13 +2435,20 @@ declare const UserProfileWidget: {
|
|
|
1780
2435
|
fulfilledMeta?: unknown;
|
|
1781
2436
|
rejectedMeta?: unknown;
|
|
1782
2437
|
}>;
|
|
1783
|
-
|
|
2438
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2439
|
+
userId: string;
|
|
2440
|
+
}, {
|
|
1784
2441
|
extra: {
|
|
1785
2442
|
api: {
|
|
1786
2443
|
user: {
|
|
1787
2444
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1788
2445
|
me: () => Promise<any>;
|
|
1789
2446
|
};
|
|
2447
|
+
device: {
|
|
2448
|
+
devices: ({ userId }: {
|
|
2449
|
+
userId: string;
|
|
2450
|
+
}) => Promise<any>;
|
|
2451
|
+
};
|
|
1790
2452
|
};
|
|
1791
2453
|
};
|
|
1792
2454
|
state?: unknown;
|
|
@@ -1797,14 +2459,936 @@ declare const UserProfileWidget: {
|
|
|
1797
2459
|
fulfilledMeta?: unknown;
|
|
1798
2460
|
rejectedMeta?: unknown;
|
|
1799
2461
|
}>;
|
|
1800
|
-
|
|
1801
|
-
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2462
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1802
2463
|
extra: {
|
|
1803
2464
|
api: {
|
|
1804
2465
|
user: {
|
|
1805
2466
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1806
2467
|
me: () => Promise<any>;
|
|
1807
2468
|
};
|
|
2469
|
+
device: {
|
|
2470
|
+
devices: ({ userId }: {
|
|
2471
|
+
userId: string;
|
|
2472
|
+
}) => Promise<any>;
|
|
2473
|
+
};
|
|
2474
|
+
};
|
|
2475
|
+
};
|
|
2476
|
+
state?: unknown;
|
|
2477
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2478
|
+
rejectValue?: unknown;
|
|
2479
|
+
serializedErrorType?: unknown;
|
|
2480
|
+
pendingMeta?: unknown;
|
|
2481
|
+
fulfilledMeta?: unknown;
|
|
2482
|
+
rejectedMeta?: unknown;
|
|
2483
|
+
}>;
|
|
2484
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2485
|
+
clearNotifications: (state: {
|
|
2486
|
+
me: {
|
|
2487
|
+
loading: boolean;
|
|
2488
|
+
error: unknown;
|
|
2489
|
+
data: {
|
|
2490
|
+
[x: string]: any;
|
|
2491
|
+
};
|
|
2492
|
+
};
|
|
2493
|
+
devices: {
|
|
2494
|
+
loading: boolean;
|
|
2495
|
+
error: unknown;
|
|
2496
|
+
data: {
|
|
2497
|
+
id: string;
|
|
2498
|
+
name: string;
|
|
2499
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2500
|
+
isCurrentDevice: boolean;
|
|
2501
|
+
lastLoginTime: string;
|
|
2502
|
+
}[];
|
|
2503
|
+
};
|
|
2504
|
+
notifications: {
|
|
2505
|
+
type: "success" | "error";
|
|
2506
|
+
msg: string;
|
|
2507
|
+
}[];
|
|
2508
|
+
}) => void;
|
|
2509
|
+
}, "widget"> & {
|
|
2510
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2511
|
+
extra: {
|
|
2512
|
+
api: {
|
|
2513
|
+
user: {
|
|
2514
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2515
|
+
me: () => Promise<any>;
|
|
2516
|
+
};
|
|
2517
|
+
device: {
|
|
2518
|
+
devices: ({ userId }: {
|
|
2519
|
+
userId: string;
|
|
2520
|
+
}) => Promise<any>;
|
|
2521
|
+
};
|
|
2522
|
+
};
|
|
2523
|
+
};
|
|
2524
|
+
state?: unknown;
|
|
2525
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2526
|
+
rejectValue?: unknown;
|
|
2527
|
+
serializedErrorType?: unknown;
|
|
2528
|
+
pendingMeta?: unknown;
|
|
2529
|
+
fulfilledMeta?: unknown;
|
|
2530
|
+
rejectedMeta?: unknown;
|
|
2531
|
+
}>;
|
|
2532
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2533
|
+
userId: string;
|
|
2534
|
+
}, {
|
|
2535
|
+
extra: {
|
|
2536
|
+
api: {
|
|
2537
|
+
user: {
|
|
2538
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2539
|
+
me: () => Promise<any>;
|
|
2540
|
+
};
|
|
2541
|
+
device: {
|
|
2542
|
+
devices: ({ userId }: {
|
|
2543
|
+
userId: string;
|
|
2544
|
+
}) => Promise<any>;
|
|
2545
|
+
};
|
|
2546
|
+
};
|
|
2547
|
+
};
|
|
2548
|
+
state?: unknown;
|
|
2549
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2550
|
+
rejectValue?: unknown;
|
|
2551
|
+
serializedErrorType?: unknown;
|
|
2552
|
+
pendingMeta?: unknown;
|
|
2553
|
+
fulfilledMeta?: unknown;
|
|
2554
|
+
rejectedMeta?: unknown;
|
|
2555
|
+
}>;
|
|
2556
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2557
|
+
extra: {
|
|
2558
|
+
api: {
|
|
2559
|
+
user: {
|
|
2560
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2561
|
+
me: () => Promise<any>;
|
|
2562
|
+
};
|
|
2563
|
+
device: {
|
|
2564
|
+
devices: ({ userId }: {
|
|
2565
|
+
userId: string;
|
|
2566
|
+
}) => Promise<any>;
|
|
2567
|
+
};
|
|
2568
|
+
};
|
|
2569
|
+
};
|
|
2570
|
+
state?: unknown;
|
|
2571
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2572
|
+
rejectValue?: unknown;
|
|
2573
|
+
serializedErrorType?: unknown;
|
|
2574
|
+
pendingMeta?: unknown;
|
|
2575
|
+
fulfilledMeta?: unknown;
|
|
2576
|
+
rejectedMeta?: unknown;
|
|
2577
|
+
}>;
|
|
2578
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2579
|
+
clearNotifications: (state: {
|
|
2580
|
+
me: {
|
|
2581
|
+
loading: boolean;
|
|
2582
|
+
error: unknown;
|
|
2583
|
+
data: {
|
|
2584
|
+
[x: string]: any;
|
|
2585
|
+
};
|
|
2586
|
+
};
|
|
2587
|
+
devices: {
|
|
2588
|
+
loading: boolean;
|
|
2589
|
+
error: unknown;
|
|
2590
|
+
data: {
|
|
2591
|
+
id: string;
|
|
2592
|
+
name: string;
|
|
2593
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2594
|
+
isCurrentDevice: boolean;
|
|
2595
|
+
lastLoginTime: string;
|
|
2596
|
+
}[];
|
|
2597
|
+
};
|
|
2598
|
+
notifications: {
|
|
2599
|
+
type: "success" | "error";
|
|
2600
|
+
msg: string;
|
|
2601
|
+
}[];
|
|
2602
|
+
}) => void;
|
|
2603
|
+
}, "widget"> & {
|
|
2604
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2605
|
+
extra: {
|
|
2606
|
+
api: {
|
|
2607
|
+
user: {
|
|
2608
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2609
|
+
me: () => Promise<any>;
|
|
2610
|
+
};
|
|
2611
|
+
device: {
|
|
2612
|
+
devices: ({ userId }: {
|
|
2613
|
+
userId: string;
|
|
2614
|
+
}) => Promise<any>;
|
|
2615
|
+
};
|
|
2616
|
+
};
|
|
2617
|
+
};
|
|
2618
|
+
state?: unknown;
|
|
2619
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2620
|
+
rejectValue?: unknown;
|
|
2621
|
+
serializedErrorType?: unknown;
|
|
2622
|
+
pendingMeta?: unknown;
|
|
2623
|
+
fulfilledMeta?: unknown;
|
|
2624
|
+
rejectedMeta?: unknown;
|
|
2625
|
+
}>;
|
|
2626
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2627
|
+
userId: string;
|
|
2628
|
+
}, {
|
|
2629
|
+
extra: {
|
|
2630
|
+
api: {
|
|
2631
|
+
user: {
|
|
2632
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2633
|
+
me: () => Promise<any>;
|
|
2634
|
+
};
|
|
2635
|
+
device: {
|
|
2636
|
+
devices: ({ userId }: {
|
|
2637
|
+
userId: string;
|
|
2638
|
+
}) => Promise<any>;
|
|
2639
|
+
};
|
|
2640
|
+
};
|
|
2641
|
+
};
|
|
2642
|
+
state?: unknown;
|
|
2643
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2644
|
+
rejectValue?: unknown;
|
|
2645
|
+
serializedErrorType?: unknown;
|
|
2646
|
+
pendingMeta?: unknown;
|
|
2647
|
+
fulfilledMeta?: unknown;
|
|
2648
|
+
rejectedMeta?: unknown;
|
|
2649
|
+
}>;
|
|
2650
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2651
|
+
extra: {
|
|
2652
|
+
api: {
|
|
2653
|
+
user: {
|
|
2654
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2655
|
+
me: () => Promise<any>;
|
|
2656
|
+
};
|
|
2657
|
+
device: {
|
|
2658
|
+
devices: ({ userId }: {
|
|
2659
|
+
userId: string;
|
|
2660
|
+
}) => Promise<any>;
|
|
2661
|
+
};
|
|
2662
|
+
};
|
|
2663
|
+
};
|
|
2664
|
+
state?: unknown;
|
|
2665
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2666
|
+
rejectValue?: unknown;
|
|
2667
|
+
serializedErrorType?: unknown;
|
|
2668
|
+
pendingMeta?: unknown;
|
|
2669
|
+
fulfilledMeta?: unknown;
|
|
2670
|
+
rejectedMeta?: unknown;
|
|
2671
|
+
}>;
|
|
2672
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2673
|
+
clearNotifications: (state: {
|
|
2674
|
+
me: {
|
|
2675
|
+
loading: boolean;
|
|
2676
|
+
error: unknown;
|
|
2677
|
+
data: {
|
|
2678
|
+
[x: string]: any;
|
|
2679
|
+
};
|
|
2680
|
+
};
|
|
2681
|
+
devices: {
|
|
2682
|
+
loading: boolean;
|
|
2683
|
+
error: unknown;
|
|
2684
|
+
data: {
|
|
2685
|
+
id: string;
|
|
2686
|
+
name: string;
|
|
2687
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2688
|
+
isCurrentDevice: boolean;
|
|
2689
|
+
lastLoginTime: string;
|
|
2690
|
+
}[];
|
|
2691
|
+
};
|
|
2692
|
+
notifications: {
|
|
2693
|
+
type: "success" | "error";
|
|
2694
|
+
msg: string;
|
|
2695
|
+
}[];
|
|
2696
|
+
}) => void;
|
|
2697
|
+
}, "widget"> & {
|
|
2698
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2699
|
+
extra: {
|
|
2700
|
+
api: {
|
|
2701
|
+
user: {
|
|
2702
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2703
|
+
me: () => Promise<any>;
|
|
2704
|
+
};
|
|
2705
|
+
device: {
|
|
2706
|
+
devices: ({ userId }: {
|
|
2707
|
+
userId: string;
|
|
2708
|
+
}) => Promise<any>;
|
|
2709
|
+
};
|
|
2710
|
+
};
|
|
2711
|
+
};
|
|
2712
|
+
state?: unknown;
|
|
2713
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2714
|
+
rejectValue?: unknown;
|
|
2715
|
+
serializedErrorType?: unknown;
|
|
2716
|
+
pendingMeta?: unknown;
|
|
2717
|
+
fulfilledMeta?: unknown;
|
|
2718
|
+
rejectedMeta?: unknown;
|
|
2719
|
+
}>;
|
|
2720
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2721
|
+
userId: string;
|
|
2722
|
+
}, {
|
|
2723
|
+
extra: {
|
|
2724
|
+
api: {
|
|
2725
|
+
user: {
|
|
2726
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2727
|
+
me: () => Promise<any>;
|
|
2728
|
+
};
|
|
2729
|
+
device: {
|
|
2730
|
+
devices: ({ userId }: {
|
|
2731
|
+
userId: string;
|
|
2732
|
+
}) => Promise<any>;
|
|
2733
|
+
};
|
|
2734
|
+
};
|
|
2735
|
+
};
|
|
2736
|
+
state?: unknown;
|
|
2737
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2738
|
+
rejectValue?: unknown;
|
|
2739
|
+
serializedErrorType?: unknown;
|
|
2740
|
+
pendingMeta?: unknown;
|
|
2741
|
+
fulfilledMeta?: unknown;
|
|
2742
|
+
rejectedMeta?: unknown;
|
|
2743
|
+
}>;
|
|
2744
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2745
|
+
extra: {
|
|
2746
|
+
api: {
|
|
2747
|
+
user: {
|
|
2748
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2749
|
+
me: () => Promise<any>;
|
|
2750
|
+
};
|
|
2751
|
+
device: {
|
|
2752
|
+
devices: ({ userId }: {
|
|
2753
|
+
userId: string;
|
|
2754
|
+
}) => Promise<any>;
|
|
2755
|
+
};
|
|
2756
|
+
};
|
|
2757
|
+
};
|
|
2758
|
+
state?: unknown;
|
|
2759
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2760
|
+
rejectValue?: unknown;
|
|
2761
|
+
serializedErrorType?: unknown;
|
|
2762
|
+
pendingMeta?: unknown;
|
|
2763
|
+
fulfilledMeta?: unknown;
|
|
2764
|
+
rejectedMeta?: unknown;
|
|
2765
|
+
}>;
|
|
2766
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2767
|
+
clearNotifications: (state: {
|
|
2768
|
+
me: {
|
|
2769
|
+
loading: boolean;
|
|
2770
|
+
error: unknown;
|
|
2771
|
+
data: {
|
|
2772
|
+
[x: string]: any;
|
|
2773
|
+
};
|
|
2774
|
+
};
|
|
2775
|
+
devices: {
|
|
2776
|
+
loading: boolean;
|
|
2777
|
+
error: unknown;
|
|
2778
|
+
data: {
|
|
2779
|
+
id: string;
|
|
2780
|
+
name: string;
|
|
2781
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2782
|
+
isCurrentDevice: boolean;
|
|
2783
|
+
lastLoginTime: string;
|
|
2784
|
+
}[];
|
|
2785
|
+
};
|
|
2786
|
+
notifications: {
|
|
2787
|
+
type: "success" | "error";
|
|
2788
|
+
msg: string;
|
|
2789
|
+
}[];
|
|
2790
|
+
}) => void;
|
|
2791
|
+
}, "widget"> & {
|
|
2792
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2793
|
+
extra: {
|
|
2794
|
+
api: {
|
|
2795
|
+
user: {
|
|
2796
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2797
|
+
me: () => Promise<any>;
|
|
2798
|
+
};
|
|
2799
|
+
device: {
|
|
2800
|
+
devices: ({ userId }: {
|
|
2801
|
+
userId: string;
|
|
2802
|
+
}) => Promise<any>;
|
|
2803
|
+
};
|
|
2804
|
+
};
|
|
2805
|
+
};
|
|
2806
|
+
state?: unknown;
|
|
2807
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2808
|
+
rejectValue?: unknown;
|
|
2809
|
+
serializedErrorType?: unknown;
|
|
2810
|
+
pendingMeta?: unknown;
|
|
2811
|
+
fulfilledMeta?: unknown;
|
|
2812
|
+
rejectedMeta?: unknown;
|
|
2813
|
+
}>;
|
|
2814
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2815
|
+
userId: string;
|
|
2816
|
+
}, {
|
|
2817
|
+
extra: {
|
|
2818
|
+
api: {
|
|
2819
|
+
user: {
|
|
2820
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2821
|
+
me: () => Promise<any>;
|
|
2822
|
+
};
|
|
2823
|
+
device: {
|
|
2824
|
+
devices: ({ userId }: {
|
|
2825
|
+
userId: string;
|
|
2826
|
+
}) => Promise<any>;
|
|
2827
|
+
};
|
|
2828
|
+
};
|
|
2829
|
+
};
|
|
2830
|
+
state?: unknown;
|
|
2831
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2832
|
+
rejectValue?: unknown;
|
|
2833
|
+
serializedErrorType?: unknown;
|
|
2834
|
+
pendingMeta?: unknown;
|
|
2835
|
+
fulfilledMeta?: unknown;
|
|
2836
|
+
rejectedMeta?: unknown;
|
|
2837
|
+
}>;
|
|
2838
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2839
|
+
extra: {
|
|
2840
|
+
api: {
|
|
2841
|
+
user: {
|
|
2842
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2843
|
+
me: () => Promise<any>;
|
|
2844
|
+
};
|
|
2845
|
+
device: {
|
|
2846
|
+
devices: ({ userId }: {
|
|
2847
|
+
userId: string;
|
|
2848
|
+
}) => Promise<any>;
|
|
2849
|
+
};
|
|
2850
|
+
};
|
|
2851
|
+
};
|
|
2852
|
+
state?: unknown;
|
|
2853
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2854
|
+
rejectValue?: unknown;
|
|
2855
|
+
serializedErrorType?: unknown;
|
|
2856
|
+
pendingMeta?: unknown;
|
|
2857
|
+
fulfilledMeta?: unknown;
|
|
2858
|
+
rejectedMeta?: unknown;
|
|
2859
|
+
}>;
|
|
2860
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2861
|
+
clearNotifications: (state: {
|
|
2862
|
+
me: {
|
|
2863
|
+
loading: boolean;
|
|
2864
|
+
error: unknown;
|
|
2865
|
+
data: {
|
|
2866
|
+
[x: string]: any;
|
|
2867
|
+
};
|
|
2868
|
+
};
|
|
2869
|
+
devices: {
|
|
2870
|
+
loading: boolean;
|
|
2871
|
+
error: unknown;
|
|
2872
|
+
data: {
|
|
2873
|
+
id: string;
|
|
2874
|
+
name: string;
|
|
2875
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2876
|
+
isCurrentDevice: boolean;
|
|
2877
|
+
lastLoginTime: string;
|
|
2878
|
+
}[];
|
|
2879
|
+
};
|
|
2880
|
+
notifications: {
|
|
2881
|
+
type: "success" | "error";
|
|
2882
|
+
msg: string;
|
|
2883
|
+
}[];
|
|
2884
|
+
}) => void;
|
|
2885
|
+
}, "widget"> & {
|
|
2886
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2887
|
+
extra: {
|
|
2888
|
+
api: {
|
|
2889
|
+
user: {
|
|
2890
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2891
|
+
me: () => Promise<any>;
|
|
2892
|
+
};
|
|
2893
|
+
device: {
|
|
2894
|
+
devices: ({ userId }: {
|
|
2895
|
+
userId: string;
|
|
2896
|
+
}) => Promise<any>;
|
|
2897
|
+
};
|
|
2898
|
+
};
|
|
2899
|
+
};
|
|
2900
|
+
state?: unknown;
|
|
2901
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2902
|
+
rejectValue?: unknown;
|
|
2903
|
+
serializedErrorType?: unknown;
|
|
2904
|
+
pendingMeta?: unknown;
|
|
2905
|
+
fulfilledMeta?: unknown;
|
|
2906
|
+
rejectedMeta?: unknown;
|
|
2907
|
+
}>;
|
|
2908
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
2909
|
+
userId: string;
|
|
2910
|
+
}, {
|
|
2911
|
+
extra: {
|
|
2912
|
+
api: {
|
|
2913
|
+
user: {
|
|
2914
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2915
|
+
me: () => Promise<any>;
|
|
2916
|
+
};
|
|
2917
|
+
device: {
|
|
2918
|
+
devices: ({ userId }: {
|
|
2919
|
+
userId: string;
|
|
2920
|
+
}) => Promise<any>;
|
|
2921
|
+
};
|
|
2922
|
+
};
|
|
2923
|
+
};
|
|
2924
|
+
state?: unknown;
|
|
2925
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2926
|
+
rejectValue?: unknown;
|
|
2927
|
+
serializedErrorType?: unknown;
|
|
2928
|
+
pendingMeta?: unknown;
|
|
2929
|
+
fulfilledMeta?: unknown;
|
|
2930
|
+
rejectedMeta?: unknown;
|
|
2931
|
+
}>;
|
|
2932
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2933
|
+
extra: {
|
|
2934
|
+
api: {
|
|
2935
|
+
user: {
|
|
2936
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2937
|
+
me: () => Promise<any>;
|
|
2938
|
+
};
|
|
2939
|
+
device: {
|
|
2940
|
+
devices: ({ userId }: {
|
|
2941
|
+
userId: string;
|
|
2942
|
+
}) => Promise<any>;
|
|
2943
|
+
};
|
|
2944
|
+
};
|
|
2945
|
+
};
|
|
2946
|
+
state?: unknown;
|
|
2947
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2948
|
+
rejectValue?: unknown;
|
|
2949
|
+
serializedErrorType?: unknown;
|
|
2950
|
+
pendingMeta?: unknown;
|
|
2951
|
+
fulfilledMeta?: unknown;
|
|
2952
|
+
rejectedMeta?: unknown;
|
|
2953
|
+
}>;
|
|
2954
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
2955
|
+
clearNotifications: (state: {
|
|
2956
|
+
me: {
|
|
2957
|
+
loading: boolean;
|
|
2958
|
+
error: unknown;
|
|
2959
|
+
data: {
|
|
2960
|
+
[x: string]: any;
|
|
2961
|
+
};
|
|
2962
|
+
};
|
|
2963
|
+
devices: {
|
|
2964
|
+
loading: boolean;
|
|
2965
|
+
error: unknown;
|
|
2966
|
+
data: {
|
|
2967
|
+
id: string;
|
|
2968
|
+
name: string;
|
|
2969
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
2970
|
+
isCurrentDevice: boolean;
|
|
2971
|
+
lastLoginTime: string;
|
|
2972
|
+
}[];
|
|
2973
|
+
};
|
|
2974
|
+
notifications: {
|
|
2975
|
+
type: "success" | "error";
|
|
2976
|
+
msg: string;
|
|
2977
|
+
}[];
|
|
2978
|
+
}) => void;
|
|
2979
|
+
}, "widget"> & {
|
|
2980
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
2981
|
+
extra: {
|
|
2982
|
+
api: {
|
|
2983
|
+
user: {
|
|
2984
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
2985
|
+
me: () => Promise<any>;
|
|
2986
|
+
};
|
|
2987
|
+
device: {
|
|
2988
|
+
devices: ({ userId }: {
|
|
2989
|
+
userId: string;
|
|
2990
|
+
}) => Promise<any>;
|
|
2991
|
+
};
|
|
2992
|
+
};
|
|
2993
|
+
};
|
|
2994
|
+
state?: unknown;
|
|
2995
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
2996
|
+
rejectValue?: unknown;
|
|
2997
|
+
serializedErrorType?: unknown;
|
|
2998
|
+
pendingMeta?: unknown;
|
|
2999
|
+
fulfilledMeta?: unknown;
|
|
3000
|
+
rejectedMeta?: unknown;
|
|
3001
|
+
}>;
|
|
3002
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
3003
|
+
userId: string;
|
|
3004
|
+
}, {
|
|
3005
|
+
extra: {
|
|
3006
|
+
api: {
|
|
3007
|
+
user: {
|
|
3008
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3009
|
+
me: () => Promise<any>;
|
|
3010
|
+
};
|
|
3011
|
+
device: {
|
|
3012
|
+
devices: ({ userId }: {
|
|
3013
|
+
userId: string;
|
|
3014
|
+
}) => Promise<any>;
|
|
3015
|
+
};
|
|
3016
|
+
};
|
|
3017
|
+
};
|
|
3018
|
+
state?: unknown;
|
|
3019
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3020
|
+
rejectValue?: unknown;
|
|
3021
|
+
serializedErrorType?: unknown;
|
|
3022
|
+
pendingMeta?: unknown;
|
|
3023
|
+
fulfilledMeta?: unknown;
|
|
3024
|
+
rejectedMeta?: unknown;
|
|
3025
|
+
}>;
|
|
3026
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3027
|
+
extra: {
|
|
3028
|
+
api: {
|
|
3029
|
+
user: {
|
|
3030
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3031
|
+
me: () => Promise<any>;
|
|
3032
|
+
};
|
|
3033
|
+
device: {
|
|
3034
|
+
devices: ({ userId }: {
|
|
3035
|
+
userId: string;
|
|
3036
|
+
}) => Promise<any>;
|
|
3037
|
+
};
|
|
3038
|
+
};
|
|
3039
|
+
};
|
|
3040
|
+
state?: unknown;
|
|
3041
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3042
|
+
rejectValue?: unknown;
|
|
3043
|
+
serializedErrorType?: unknown;
|
|
3044
|
+
pendingMeta?: unknown;
|
|
3045
|
+
fulfilledMeta?: unknown;
|
|
3046
|
+
rejectedMeta?: unknown;
|
|
3047
|
+
}>;
|
|
3048
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
3049
|
+
clearNotifications: (state: {
|
|
3050
|
+
me: {
|
|
3051
|
+
loading: boolean;
|
|
3052
|
+
error: unknown;
|
|
3053
|
+
data: {
|
|
3054
|
+
[x: string]: any;
|
|
3055
|
+
};
|
|
3056
|
+
};
|
|
3057
|
+
devices: {
|
|
3058
|
+
loading: boolean;
|
|
3059
|
+
error: unknown;
|
|
3060
|
+
data: {
|
|
3061
|
+
id: string;
|
|
3062
|
+
name: string;
|
|
3063
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3064
|
+
isCurrentDevice: boolean;
|
|
3065
|
+
lastLoginTime: string;
|
|
3066
|
+
}[];
|
|
3067
|
+
};
|
|
3068
|
+
notifications: {
|
|
3069
|
+
type: "success" | "error";
|
|
3070
|
+
msg: string;
|
|
3071
|
+
}[];
|
|
3072
|
+
}) => void;
|
|
3073
|
+
}, "widget"> & {
|
|
3074
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3075
|
+
extra: {
|
|
3076
|
+
api: {
|
|
3077
|
+
user: {
|
|
3078
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3079
|
+
me: () => Promise<any>;
|
|
3080
|
+
};
|
|
3081
|
+
device: {
|
|
3082
|
+
devices: ({ userId }: {
|
|
3083
|
+
userId: string;
|
|
3084
|
+
}) => Promise<any>;
|
|
3085
|
+
};
|
|
3086
|
+
};
|
|
3087
|
+
};
|
|
3088
|
+
state?: unknown;
|
|
3089
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3090
|
+
rejectValue?: unknown;
|
|
3091
|
+
serializedErrorType?: unknown;
|
|
3092
|
+
pendingMeta?: unknown;
|
|
3093
|
+
fulfilledMeta?: unknown;
|
|
3094
|
+
rejectedMeta?: unknown;
|
|
3095
|
+
}>;
|
|
3096
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
3097
|
+
userId: string;
|
|
3098
|
+
}, {
|
|
3099
|
+
extra: {
|
|
3100
|
+
api: {
|
|
3101
|
+
user: {
|
|
3102
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3103
|
+
me: () => Promise<any>;
|
|
3104
|
+
};
|
|
3105
|
+
device: {
|
|
3106
|
+
devices: ({ userId }: {
|
|
3107
|
+
userId: string;
|
|
3108
|
+
}) => Promise<any>;
|
|
3109
|
+
};
|
|
3110
|
+
};
|
|
3111
|
+
};
|
|
3112
|
+
state?: unknown;
|
|
3113
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3114
|
+
rejectValue?: unknown;
|
|
3115
|
+
serializedErrorType?: unknown;
|
|
3116
|
+
pendingMeta?: unknown;
|
|
3117
|
+
fulfilledMeta?: unknown;
|
|
3118
|
+
rejectedMeta?: unknown;
|
|
3119
|
+
}>;
|
|
3120
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3121
|
+
extra: {
|
|
3122
|
+
api: {
|
|
3123
|
+
user: {
|
|
3124
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3125
|
+
me: () => Promise<any>;
|
|
3126
|
+
};
|
|
3127
|
+
device: {
|
|
3128
|
+
devices: ({ userId }: {
|
|
3129
|
+
userId: string;
|
|
3130
|
+
}) => Promise<any>;
|
|
3131
|
+
};
|
|
3132
|
+
};
|
|
3133
|
+
};
|
|
3134
|
+
state?: unknown;
|
|
3135
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3136
|
+
rejectValue?: unknown;
|
|
3137
|
+
serializedErrorType?: unknown;
|
|
3138
|
+
pendingMeta?: unknown;
|
|
3139
|
+
fulfilledMeta?: unknown;
|
|
3140
|
+
rejectedMeta?: unknown;
|
|
3141
|
+
}>;
|
|
3142
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
3143
|
+
clearNotifications: (state: {
|
|
3144
|
+
me: {
|
|
3145
|
+
loading: boolean;
|
|
3146
|
+
error: unknown;
|
|
3147
|
+
data: {
|
|
3148
|
+
[x: string]: any;
|
|
3149
|
+
};
|
|
3150
|
+
};
|
|
3151
|
+
devices: {
|
|
3152
|
+
loading: boolean;
|
|
3153
|
+
error: unknown;
|
|
3154
|
+
data: {
|
|
3155
|
+
id: string;
|
|
3156
|
+
name: string;
|
|
3157
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3158
|
+
isCurrentDevice: boolean;
|
|
3159
|
+
lastLoginTime: string;
|
|
3160
|
+
}[];
|
|
3161
|
+
};
|
|
3162
|
+
notifications: {
|
|
3163
|
+
type: "success" | "error";
|
|
3164
|
+
msg: string;
|
|
3165
|
+
}[];
|
|
3166
|
+
}) => void;
|
|
3167
|
+
}, "widget"> & {
|
|
3168
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3169
|
+
extra: {
|
|
3170
|
+
api: {
|
|
3171
|
+
user: {
|
|
3172
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3173
|
+
me: () => Promise<any>;
|
|
3174
|
+
};
|
|
3175
|
+
device: {
|
|
3176
|
+
devices: ({ userId }: {
|
|
3177
|
+
userId: string;
|
|
3178
|
+
}) => Promise<any>;
|
|
3179
|
+
};
|
|
3180
|
+
};
|
|
3181
|
+
};
|
|
3182
|
+
state?: unknown;
|
|
3183
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3184
|
+
rejectValue?: unknown;
|
|
3185
|
+
serializedErrorType?: unknown;
|
|
3186
|
+
pendingMeta?: unknown;
|
|
3187
|
+
fulfilledMeta?: unknown;
|
|
3188
|
+
rejectedMeta?: unknown;
|
|
3189
|
+
}>;
|
|
3190
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
3191
|
+
userId: string;
|
|
3192
|
+
}, {
|
|
3193
|
+
extra: {
|
|
3194
|
+
api: {
|
|
3195
|
+
user: {
|
|
3196
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3197
|
+
me: () => Promise<any>;
|
|
3198
|
+
};
|
|
3199
|
+
device: {
|
|
3200
|
+
devices: ({ userId }: {
|
|
3201
|
+
userId: string;
|
|
3202
|
+
}) => Promise<any>;
|
|
3203
|
+
};
|
|
3204
|
+
};
|
|
3205
|
+
};
|
|
3206
|
+
state?: unknown;
|
|
3207
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3208
|
+
rejectValue?: unknown;
|
|
3209
|
+
serializedErrorType?: unknown;
|
|
3210
|
+
pendingMeta?: unknown;
|
|
3211
|
+
fulfilledMeta?: unknown;
|
|
3212
|
+
rejectedMeta?: unknown;
|
|
3213
|
+
}>;
|
|
3214
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3215
|
+
extra: {
|
|
3216
|
+
api: {
|
|
3217
|
+
user: {
|
|
3218
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3219
|
+
me: () => Promise<any>;
|
|
3220
|
+
};
|
|
3221
|
+
device: {
|
|
3222
|
+
devices: ({ userId }: {
|
|
3223
|
+
userId: string;
|
|
3224
|
+
}) => Promise<any>;
|
|
3225
|
+
};
|
|
3226
|
+
};
|
|
3227
|
+
};
|
|
3228
|
+
state?: unknown;
|
|
3229
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3230
|
+
rejectValue?: unknown;
|
|
3231
|
+
serializedErrorType?: unknown;
|
|
3232
|
+
pendingMeta?: unknown;
|
|
3233
|
+
fulfilledMeta?: unknown;
|
|
3234
|
+
rejectedMeta?: unknown;
|
|
3235
|
+
}>;
|
|
3236
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
3237
|
+
clearNotifications: (state: {
|
|
3238
|
+
me: {
|
|
3239
|
+
loading: boolean;
|
|
3240
|
+
error: unknown;
|
|
3241
|
+
data: {
|
|
3242
|
+
[x: string]: any;
|
|
3243
|
+
};
|
|
3244
|
+
};
|
|
3245
|
+
devices: {
|
|
3246
|
+
loading: boolean;
|
|
3247
|
+
error: unknown;
|
|
3248
|
+
data: {
|
|
3249
|
+
id: string;
|
|
3250
|
+
name: string;
|
|
3251
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3252
|
+
isCurrentDevice: boolean;
|
|
3253
|
+
lastLoginTime: string;
|
|
3254
|
+
}[];
|
|
3255
|
+
};
|
|
3256
|
+
notifications: {
|
|
3257
|
+
type: "success" | "error";
|
|
3258
|
+
msg: string;
|
|
3259
|
+
}[];
|
|
3260
|
+
}) => void;
|
|
3261
|
+
}, "widget"> & {
|
|
3262
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3263
|
+
extra: {
|
|
3264
|
+
api: {
|
|
3265
|
+
user: {
|
|
3266
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3267
|
+
me: () => Promise<any>;
|
|
3268
|
+
};
|
|
3269
|
+
device: {
|
|
3270
|
+
devices: ({ userId }: {
|
|
3271
|
+
userId: string;
|
|
3272
|
+
}) => Promise<any>;
|
|
3273
|
+
};
|
|
3274
|
+
};
|
|
3275
|
+
};
|
|
3276
|
+
state?: unknown;
|
|
3277
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3278
|
+
rejectValue?: unknown;
|
|
3279
|
+
serializedErrorType?: unknown;
|
|
3280
|
+
pendingMeta?: unknown;
|
|
3281
|
+
fulfilledMeta?: unknown;
|
|
3282
|
+
rejectedMeta?: unknown;
|
|
3283
|
+
}>;
|
|
3284
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
3285
|
+
userId: string;
|
|
3286
|
+
}, {
|
|
3287
|
+
extra: {
|
|
3288
|
+
api: {
|
|
3289
|
+
user: {
|
|
3290
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3291
|
+
me: () => Promise<any>;
|
|
3292
|
+
};
|
|
3293
|
+
device: {
|
|
3294
|
+
devices: ({ userId }: {
|
|
3295
|
+
userId: string;
|
|
3296
|
+
}) => Promise<any>;
|
|
3297
|
+
};
|
|
3298
|
+
};
|
|
3299
|
+
};
|
|
3300
|
+
state?: unknown;
|
|
3301
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3302
|
+
rejectValue?: unknown;
|
|
3303
|
+
serializedErrorType?: unknown;
|
|
3304
|
+
pendingMeta?: unknown;
|
|
3305
|
+
fulfilledMeta?: unknown;
|
|
3306
|
+
rejectedMeta?: unknown;
|
|
3307
|
+
}>;
|
|
3308
|
+
logout: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3309
|
+
extra: {
|
|
3310
|
+
api: {
|
|
3311
|
+
user: {
|
|
3312
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3313
|
+
me: () => Promise<any>;
|
|
3314
|
+
};
|
|
3315
|
+
device: {
|
|
3316
|
+
devices: ({ userId }: {
|
|
3317
|
+
userId: string;
|
|
3318
|
+
}) => Promise<any>;
|
|
3319
|
+
};
|
|
3320
|
+
};
|
|
3321
|
+
};
|
|
3322
|
+
state?: unknown;
|
|
3323
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3324
|
+
rejectValue?: unknown;
|
|
3325
|
+
serializedErrorType?: unknown;
|
|
3326
|
+
pendingMeta?: unknown;
|
|
3327
|
+
fulfilledMeta?: unknown;
|
|
3328
|
+
rejectedMeta?: unknown;
|
|
3329
|
+
}>;
|
|
3330
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
3331
|
+
clearNotifications: (state: {
|
|
3332
|
+
me: {
|
|
3333
|
+
loading: boolean;
|
|
3334
|
+
error: unknown;
|
|
3335
|
+
data: {
|
|
3336
|
+
[x: string]: any;
|
|
3337
|
+
};
|
|
3338
|
+
};
|
|
3339
|
+
devices: {
|
|
3340
|
+
loading: boolean;
|
|
3341
|
+
error: unknown;
|
|
3342
|
+
data: {
|
|
3343
|
+
id: string;
|
|
3344
|
+
name: string;
|
|
3345
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3346
|
+
isCurrentDevice: boolean;
|
|
3347
|
+
lastLoginTime: string;
|
|
3348
|
+
}[];
|
|
3349
|
+
};
|
|
3350
|
+
notifications: {
|
|
3351
|
+
type: "success" | "error";
|
|
3352
|
+
msg: string;
|
|
3353
|
+
}[];
|
|
3354
|
+
}) => void;
|
|
3355
|
+
}, "widget"> & {
|
|
3356
|
+
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
3357
|
+
extra: {
|
|
3358
|
+
api: {
|
|
3359
|
+
user: {
|
|
3360
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3361
|
+
me: () => Promise<any>;
|
|
3362
|
+
};
|
|
3363
|
+
device: {
|
|
3364
|
+
devices: ({ userId }: {
|
|
3365
|
+
userId: string;
|
|
3366
|
+
}) => Promise<any>;
|
|
3367
|
+
};
|
|
3368
|
+
};
|
|
3369
|
+
};
|
|
3370
|
+
state?: unknown;
|
|
3371
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3372
|
+
rejectValue?: unknown;
|
|
3373
|
+
serializedErrorType?: unknown;
|
|
3374
|
+
pendingMeta?: unknown;
|
|
3375
|
+
fulfilledMeta?: unknown;
|
|
3376
|
+
rejectedMeta?: unknown;
|
|
3377
|
+
}>;
|
|
3378
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
3379
|
+
userId: string;
|
|
3380
|
+
}, {
|
|
3381
|
+
extra: {
|
|
3382
|
+
api: {
|
|
3383
|
+
user: {
|
|
3384
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3385
|
+
me: () => Promise<any>;
|
|
3386
|
+
};
|
|
3387
|
+
device: {
|
|
3388
|
+
devices: ({ userId }: {
|
|
3389
|
+
userId: string;
|
|
3390
|
+
}) => Promise<any>;
|
|
3391
|
+
};
|
|
1808
3392
|
};
|
|
1809
3393
|
};
|
|
1810
3394
|
state?: unknown;
|
|
@@ -1822,6 +3406,11 @@ declare const UserProfileWidget: {
|
|
|
1822
3406
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1823
3407
|
me: () => Promise<any>;
|
|
1824
3408
|
};
|
|
3409
|
+
device: {
|
|
3410
|
+
devices: ({ userId }: {
|
|
3411
|
+
userId: string;
|
|
3412
|
+
}) => Promise<any>;
|
|
3413
|
+
};
|
|
1825
3414
|
};
|
|
1826
3415
|
};
|
|
1827
3416
|
state?: unknown;
|
|
@@ -1832,7 +3421,32 @@ declare const UserProfileWidget: {
|
|
|
1832
3421
|
fulfilledMeta?: unknown;
|
|
1833
3422
|
rejectedMeta?: unknown;
|
|
1834
3423
|
}>;
|
|
1835
|
-
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
3424
|
+
} & _reduxjs_toolkit.CaseReducerActions<{
|
|
3425
|
+
clearNotifications: (state: {
|
|
3426
|
+
me: {
|
|
3427
|
+
loading: boolean;
|
|
3428
|
+
error: unknown;
|
|
3429
|
+
data: {
|
|
3430
|
+
[x: string]: any;
|
|
3431
|
+
};
|
|
3432
|
+
};
|
|
3433
|
+
devices: {
|
|
3434
|
+
loading: boolean;
|
|
3435
|
+
error: unknown;
|
|
3436
|
+
data: {
|
|
3437
|
+
id: string;
|
|
3438
|
+
name: string;
|
|
3439
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3440
|
+
isCurrentDevice: boolean;
|
|
3441
|
+
lastLoginTime: string;
|
|
3442
|
+
}[];
|
|
3443
|
+
};
|
|
3444
|
+
notifications: {
|
|
3445
|
+
type: "success" | "error";
|
|
3446
|
+
msg: string;
|
|
3447
|
+
}[];
|
|
3448
|
+
}) => void;
|
|
3449
|
+
}, "widget"> & {
|
|
1836
3450
|
getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
|
|
1837
3451
|
extra: {
|
|
1838
3452
|
api: {
|
|
@@ -1840,6 +3454,35 @@ declare const UserProfileWidget: {
|
|
|
1840
3454
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1841
3455
|
me: () => Promise<any>;
|
|
1842
3456
|
};
|
|
3457
|
+
device: {
|
|
3458
|
+
devices: ({ userId }: {
|
|
3459
|
+
userId: string;
|
|
3460
|
+
}) => Promise<any>;
|
|
3461
|
+
};
|
|
3462
|
+
};
|
|
3463
|
+
};
|
|
3464
|
+
state?: unknown;
|
|
3465
|
+
dispatch?: redux.Dispatch<redux.UnknownAction>;
|
|
3466
|
+
rejectValue?: unknown;
|
|
3467
|
+
serializedErrorType?: unknown;
|
|
3468
|
+
pendingMeta?: unknown;
|
|
3469
|
+
fulfilledMeta?: unknown;
|
|
3470
|
+
rejectedMeta?: unknown;
|
|
3471
|
+
}>;
|
|
3472
|
+
listDevices: _reduxjs_toolkit.AsyncThunk<any, {
|
|
3473
|
+
userId: string;
|
|
3474
|
+
}, {
|
|
3475
|
+
extra: {
|
|
3476
|
+
api: {
|
|
3477
|
+
user: {
|
|
3478
|
+
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
3479
|
+
me: () => Promise<any>;
|
|
3480
|
+
};
|
|
3481
|
+
device: {
|
|
3482
|
+
devices: ({ userId }: {
|
|
3483
|
+
userId: string;
|
|
3484
|
+
}) => Promise<any>;
|
|
3485
|
+
};
|
|
1843
3486
|
};
|
|
1844
3487
|
};
|
|
1845
3488
|
state?: unknown;
|
|
@@ -1857,6 +3500,11 @@ declare const UserProfileWidget: {
|
|
|
1857
3500
|
logout: (token?: string) => Promise<_descope_core_js_sdk.SdkResponse<never>>;
|
|
1858
3501
|
me: () => Promise<any>;
|
|
1859
3502
|
};
|
|
3503
|
+
device: {
|
|
3504
|
+
devices: ({ userId }: {
|
|
3505
|
+
userId: string;
|
|
3506
|
+
}) => Promise<any>;
|
|
3507
|
+
};
|
|
1860
3508
|
};
|
|
1861
3509
|
};
|
|
1862
3510
|
state?: unknown;
|
|
@@ -1868,8 +3516,93 @@ declare const UserProfileWidget: {
|
|
|
1868
3516
|
rejectedMeta?: unknown;
|
|
1869
3517
|
}>;
|
|
1870
3518
|
};
|
|
1871
|
-
subscribe: <SelectorR = State>(cb: (state: SelectorR) => void, selector?: (state:
|
|
1872
|
-
|
|
3519
|
+
subscribe: <SelectorR = State>(cb: (state: SelectorR) => void, selector?: (state: {
|
|
3520
|
+
me: {
|
|
3521
|
+
loading: boolean;
|
|
3522
|
+
error: unknown;
|
|
3523
|
+
data: {
|
|
3524
|
+
[x: string]: any;
|
|
3525
|
+
};
|
|
3526
|
+
};
|
|
3527
|
+
devices: {
|
|
3528
|
+
loading: boolean;
|
|
3529
|
+
error: unknown;
|
|
3530
|
+
data: {
|
|
3531
|
+
id: string;
|
|
3532
|
+
name: string;
|
|
3533
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3534
|
+
isCurrentDevice: boolean;
|
|
3535
|
+
lastLoginTime: string;
|
|
3536
|
+
}[];
|
|
3537
|
+
};
|
|
3538
|
+
notifications: {
|
|
3539
|
+
type: "success" | "error";
|
|
3540
|
+
msg: string;
|
|
3541
|
+
}[];
|
|
3542
|
+
}) => SelectorR) => redux.Unsubscribe;
|
|
3543
|
+
deviceList: _descope_sdk_component_drivers.DeviceListDriver;
|
|
3544
|
+
"__#18@#modal": _descope_sdk_component_drivers.ModalDriver;
|
|
3545
|
+
"__#18@#flow": _descope_sdk_component_drivers.FlowDriver;
|
|
3546
|
+
"__#18@#initModal"(): void;
|
|
3547
|
+
"__#18@#initModalContent"(deviceId?: string): void;
|
|
3548
|
+
"__#18@#initDeviceList"(deviceList: {
|
|
3549
|
+
id: string;
|
|
3550
|
+
name: string;
|
|
3551
|
+
deviceType: "desktop" | "mobile" | "tablet" | "unknown";
|
|
3552
|
+
lastLoginDate: number;
|
|
3553
|
+
isCurrent: boolean;
|
|
3554
|
+
}[]): void;
|
|
3555
|
+
updateDeviceList: (data: any) => void;
|
|
3556
|
+
onWidgetRootReady: (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
|
|
3557
|
+
"__#29690@#ModalDriverWrapper": new (refOrRefFn: Element | (() => HTMLElement), config: {
|
|
3558
|
+
logger: {
|
|
3559
|
+
error(...data: any[]): void;
|
|
3560
|
+
warn(...data: any[]): void;
|
|
3561
|
+
info(...data: any[]): void;
|
|
3562
|
+
debug(...data: any[]): void;
|
|
3563
|
+
};
|
|
3564
|
+
}) => {
|
|
3565
|
+
setContent(template: HTMLTemplateElement): void;
|
|
3566
|
+
"__#29689@#private": any;
|
|
3567
|
+
beforeOpen: () => void | Promise<void>;
|
|
3568
|
+
afterClose: () => void;
|
|
3569
|
+
nodeName: string;
|
|
3570
|
+
close(): void;
|
|
3571
|
+
open(): Promise<void>;
|
|
3572
|
+
reset(): void;
|
|
3573
|
+
remove(): void;
|
|
3574
|
+
"__#29687@#private": any;
|
|
3575
|
+
logger: {
|
|
3576
|
+
error(...data: any[]): void;
|
|
3577
|
+
warn(...data: any[]): void;
|
|
3578
|
+
info(...data: any[]): void;
|
|
3579
|
+
debug(...data: any[]): void;
|
|
3580
|
+
};
|
|
3581
|
+
readonly asyncEle: Promise<Element>;
|
|
3582
|
+
readonly ele: Element;
|
|
3583
|
+
};
|
|
3584
|
+
createModal(config?: Record<string, string>): _descope_sdk_component_drivers.ModalDriver;
|
|
3585
|
+
"__#7@#initWidgetRoot": (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
|
|
3586
|
+
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>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>);
|
|
3587
|
+
"__#29692@#globalStyle": _descope_sdk_mixins.InjectedStyle;
|
|
3588
|
+
readonly theme: _descope_sdk_mixins.ThemeOptions;
|
|
3589
|
+
readonly styleId: string;
|
|
3590
|
+
"__#29692@#_themeResource": Promise<void | Record<string, any>>;
|
|
3591
|
+
"__#29692@#fetchTheme"(): Promise<Record<string, any>>;
|
|
3592
|
+
readonly "__#29692@#themeResource": Promise<void | Record<string, any>>;
|
|
3593
|
+
"__#29692@#loadGlobalStyle"(): Promise<void>;
|
|
3594
|
+
"__#29692@#loadComponentsStyle"(): Promise<void>;
|
|
3595
|
+
"__#29692@#getFontsConfig"(): Promise<Record<string, {
|
|
3596
|
+
url?: string;
|
|
3597
|
+
}>>;
|
|
3598
|
+
"__#29692@#loadFonts"(): Promise<void>;
|
|
3599
|
+
"__#29692@#applyTheme"(): Promise<void>;
|
|
3600
|
+
"__#29692@#onThemeChange": () => void;
|
|
3601
|
+
"__#29692@#loadTheme"(): void;
|
|
3602
|
+
"__#29692@#toggleOsThemeChangeListener": (listen: boolean) => void;
|
|
3603
|
+
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) & ((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);
|
|
3604
|
+
logout: _descope_sdk_component_drivers.ButtonDriver;
|
|
3605
|
+
"__#10@#initLogout"(): void;
|
|
1873
3606
|
"__#16@#editModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
|
|
1874
3607
|
"__#16@#editFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
|
|
1875
3608
|
"__#16@#deleteModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
|
|
@@ -1883,23 +3616,6 @@ declare const UserProfileWidget: {
|
|
|
1883
3616
|
}) => void;
|
|
1884
3617
|
"__#16@#initEditFlow"(nodeEle: Element, field: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
|
|
1885
3618
|
"__#16@#initDeleteFlow"(nodeEle: Element, field: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
|
|
1886
|
-
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) & ((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);
|
|
1887
|
-
"__#29656@#globalStyle": _descope_sdk_mixins.InjectedStyle;
|
|
1888
|
-
readonly theme: _descope_sdk_mixins.ThemeOptions;
|
|
1889
|
-
readonly styleId: string;
|
|
1890
|
-
"__#29656@#_themeResource": Promise<void | Record<string, any>>;
|
|
1891
|
-
"__#29656@#fetchTheme"(): Promise<Record<string, any>>;
|
|
1892
|
-
readonly "__#29656@#themeResource": Promise<void | Record<string, any>>;
|
|
1893
|
-
"__#29656@#loadGlobalStyle"(): Promise<void>;
|
|
1894
|
-
"__#29656@#loadComponentsStyle"(): Promise<void>;
|
|
1895
|
-
"__#29656@#getFontsConfig"(): Promise<Record<string, {
|
|
1896
|
-
url?: string;
|
|
1897
|
-
}>>;
|
|
1898
|
-
"__#29656@#loadFonts"(): Promise<void>;
|
|
1899
|
-
"__#29656@#applyTheme"(): Promise<void>;
|
|
1900
|
-
"__#29656@#onThemeChange": () => void;
|
|
1901
|
-
"__#29656@#loadTheme"(): void;
|
|
1902
|
-
"__#29656@#toggleOsThemeChangeListener": (listen: boolean) => void;
|
|
1903
3619
|
totpUserAuthMethod: _descope_sdk_component_drivers.UserAuthMethodDriver;
|
|
1904
3620
|
"__#15@#modal": _descope_sdk_component_drivers.ModalDriver;
|
|
1905
3621
|
"__#15@#flow": _descope_sdk_component_drivers.FlowDriver;
|
|
@@ -1977,7 +3693,7 @@ declare const UserProfileWidget: {
|
|
|
1977
3693
|
"__#17@#initEditFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
|
|
1978
3694
|
"__#17@#initDeleteFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
|
|
1979
3695
|
"__#6@#createFlowRedirectModal"(widgetFlow: string): void;
|
|
1980
|
-
"__#
|
|
3696
|
+
"__#29685@#debuggerEle": HTMLElement & {
|
|
1981
3697
|
updateData: (data: {
|
|
1982
3698
|
title: string;
|
|
1983
3699
|
description?: string;
|
|
@@ -1986,11 +3702,11 @@ declare const UserProfileWidget: {
|
|
|
1986
3702
|
description?: string;
|
|
1987
3703
|
}[]) => void;
|
|
1988
3704
|
};
|
|
1989
|
-
"__#
|
|
1990
|
-
"__#
|
|
3705
|
+
"__#29685@#disableDebugger"(): void;
|
|
3706
|
+
"__#29685@#enableDebugger"(): Promise<void>;
|
|
1991
3707
|
readonly debug: boolean;
|
|
1992
|
-
"__#
|
|
1993
|
-
"__#
|
|
3708
|
+
"__#29685@#handleDebugMode"(): void;
|
|
3709
|
+
"__#29685@#updateDebuggerMessages"(title: string, description: string): void;
|
|
1994
3710
|
};
|
|
1995
3711
|
getFormattedValue(type: string, val: any): any;
|
|
1996
3712
|
};
|