@whitesev/pops 2.2.9 → 2.3.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/LICENSE +674 -0
- package/dist/index.amd.js +7 -7
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +7 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +7 -7
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +7 -7
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +7 -7
- package/dist/index.umd.js.map +1 -1
- package/dist/types/src/Pops.d.ts +492 -187
- package/dist/types/src/components/panel/index.d.ts +1 -1
- package/dist/types/src/components/rightClickMenu/index.d.ts +485 -180
- package/package.json +61 -61
|
@@ -31,6 +31,9 @@ export declare const PopsRightClickMenu: {
|
|
|
31
31
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
32
32
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
33
33
|
};
|
|
34
|
+
readonly login: {
|
|
35
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
36
|
+
};
|
|
34
37
|
readonly maxTouchPoints: number;
|
|
35
38
|
readonly mediaCapabilities: {
|
|
36
39
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -65,6 +68,8 @@ export declare const PopsRightClickMenu: {
|
|
|
65
68
|
} | null;
|
|
66
69
|
playbackState: MediaSessionPlaybackState;
|
|
67
70
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
71
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
72
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
68
73
|
setPositionState: (state?: MediaPositionState) => void;
|
|
69
74
|
};
|
|
70
75
|
readonly permissions: {
|
|
@@ -147,8 +152,8 @@ export declare const PopsRightClickMenu: {
|
|
|
147
152
|
readonly locks: {
|
|
148
153
|
query: () => Promise<LockManagerSnapshot>;
|
|
149
154
|
request: {
|
|
150
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
151
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
155
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
156
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
152
157
|
};
|
|
153
158
|
};
|
|
154
159
|
readonly onLine: boolean;
|
|
@@ -201,6 +206,34 @@ export declare const PopsRightClickMenu: {
|
|
|
201
206
|
};
|
|
202
207
|
};
|
|
203
208
|
readonly closed: boolean;
|
|
209
|
+
readonly cookieStore: {
|
|
210
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
211
|
+
delete: {
|
|
212
|
+
(name: string): Promise<void>;
|
|
213
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
214
|
+
};
|
|
215
|
+
get: {
|
|
216
|
+
(name: string): Promise<CookieListItem | null>;
|
|
217
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
218
|
+
};
|
|
219
|
+
getAll: {
|
|
220
|
+
(name: string): Promise<CookieList>;
|
|
221
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
222
|
+
};
|
|
223
|
+
set: {
|
|
224
|
+
(name: string, value: string): Promise<void>;
|
|
225
|
+
(options: CookieInit): Promise<void>;
|
|
226
|
+
};
|
|
227
|
+
addEventListener: {
|
|
228
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
229
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
230
|
+
};
|
|
231
|
+
removeEventListener: {
|
|
232
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
233
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
234
|
+
};
|
|
235
|
+
dispatchEvent: (event: Event) => boolean;
|
|
236
|
+
};
|
|
204
237
|
readonly customElements: {
|
|
205
238
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
206
239
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -315,6 +348,9 @@ export declare const PopsRightClickMenu: {
|
|
|
315
348
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
316
349
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
317
350
|
};
|
|
351
|
+
readonly login: {
|
|
352
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
353
|
+
};
|
|
318
354
|
readonly maxTouchPoints: number;
|
|
319
355
|
readonly mediaCapabilities: {
|
|
320
356
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -349,6 +385,8 @@ export declare const PopsRightClickMenu: {
|
|
|
349
385
|
} | null;
|
|
350
386
|
playbackState: MediaSessionPlaybackState;
|
|
351
387
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
388
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
389
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
352
390
|
setPositionState: (state?: MediaPositionState) => void;
|
|
353
391
|
};
|
|
354
392
|
readonly permissions: {
|
|
@@ -431,8 +469,8 @@ export declare const PopsRightClickMenu: {
|
|
|
431
469
|
readonly locks: {
|
|
432
470
|
query: () => Promise<LockManagerSnapshot>;
|
|
433
471
|
request: {
|
|
434
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
435
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
472
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
473
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
436
474
|
};
|
|
437
475
|
};
|
|
438
476
|
readonly onLine: boolean;
|
|
@@ -490,6 +528,7 @@ export declare const PopsRightClickMenu: {
|
|
|
490
528
|
onorientationchange: ((this: Window, ev: Event) => any) | null;
|
|
491
529
|
opener: any;
|
|
492
530
|
readonly orientation: number;
|
|
531
|
+
readonly originAgentCluster: boolean;
|
|
493
532
|
readonly outerHeight: number;
|
|
494
533
|
readonly outerWidth: number;
|
|
495
534
|
readonly pageXOffset: number;
|
|
@@ -554,6 +593,9 @@ export declare const PopsRightClickMenu: {
|
|
|
554
593
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
555
594
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
556
595
|
};
|
|
596
|
+
readonly login: {
|
|
597
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
598
|
+
};
|
|
557
599
|
readonly maxTouchPoints: number;
|
|
558
600
|
readonly mediaCapabilities: {
|
|
559
601
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -588,6 +630,8 @@ export declare const PopsRightClickMenu: {
|
|
|
588
630
|
} | null;
|
|
589
631
|
playbackState: MediaSessionPlaybackState;
|
|
590
632
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
633
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
634
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
591
635
|
setPositionState: (state?: MediaPositionState) => void;
|
|
592
636
|
};
|
|
593
637
|
readonly permissions: {
|
|
@@ -670,8 +714,8 @@ export declare const PopsRightClickMenu: {
|
|
|
670
714
|
readonly locks: {
|
|
671
715
|
query: () => Promise<LockManagerSnapshot>;
|
|
672
716
|
request: {
|
|
673
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
674
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
717
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
718
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
675
719
|
};
|
|
676
720
|
};
|
|
677
721
|
readonly onLine: boolean;
|
|
@@ -724,6 +768,34 @@ export declare const PopsRightClickMenu: {
|
|
|
724
768
|
};
|
|
725
769
|
};
|
|
726
770
|
closed: boolean;
|
|
771
|
+
cookieStore: {
|
|
772
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
773
|
+
delete: {
|
|
774
|
+
(name: string): Promise<void>;
|
|
775
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
776
|
+
};
|
|
777
|
+
get: {
|
|
778
|
+
(name: string): Promise<CookieListItem | null>;
|
|
779
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
780
|
+
};
|
|
781
|
+
getAll: {
|
|
782
|
+
(name: string): Promise<CookieList>;
|
|
783
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
784
|
+
};
|
|
785
|
+
set: {
|
|
786
|
+
(name: string, value: string): Promise<void>;
|
|
787
|
+
(options: CookieInit): Promise<void>;
|
|
788
|
+
};
|
|
789
|
+
addEventListener: {
|
|
790
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
791
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
792
|
+
};
|
|
793
|
+
removeEventListener: {
|
|
794
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
795
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
796
|
+
};
|
|
797
|
+
dispatchEvent: (event: Event) => boolean;
|
|
798
|
+
};
|
|
727
799
|
customElements: {
|
|
728
800
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
729
801
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -838,6 +910,9 @@ export declare const PopsRightClickMenu: {
|
|
|
838
910
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
839
911
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
840
912
|
};
|
|
913
|
+
readonly login: {
|
|
914
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
915
|
+
};
|
|
841
916
|
readonly maxTouchPoints: number;
|
|
842
917
|
readonly mediaCapabilities: {
|
|
843
918
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -872,6 +947,8 @@ export declare const PopsRightClickMenu: {
|
|
|
872
947
|
} | null;
|
|
873
948
|
playbackState: MediaSessionPlaybackState;
|
|
874
949
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
950
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
951
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
875
952
|
setPositionState: (state?: MediaPositionState) => void;
|
|
876
953
|
};
|
|
877
954
|
readonly permissions: {
|
|
@@ -954,8 +1031,8 @@ export declare const PopsRightClickMenu: {
|
|
|
954
1031
|
readonly locks: {
|
|
955
1032
|
query: () => Promise<LockManagerSnapshot>;
|
|
956
1033
|
request: {
|
|
957
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
958
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
1034
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
1035
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
959
1036
|
};
|
|
960
1037
|
};
|
|
961
1038
|
readonly onLine: boolean;
|
|
@@ -1013,6 +1090,7 @@ export declare const PopsRightClickMenu: {
|
|
|
1013
1090
|
onorientationchange: (((this: Window, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1014
1091
|
opener: any;
|
|
1015
1092
|
orientation: number;
|
|
1093
|
+
originAgentCluster: boolean;
|
|
1016
1094
|
outerHeight: number;
|
|
1017
1095
|
outerWidth: number;
|
|
1018
1096
|
pageXOffset: number;
|
|
@@ -1155,18 +1233,19 @@ export declare const PopsRightClickMenu: {
|
|
|
1155
1233
|
onanimationend: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
1156
1234
|
onanimationiteration: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
1157
1235
|
onanimationstart: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
1158
|
-
onauxclick: (((this: GlobalEventHandlers, ev:
|
|
1236
|
+
onauxclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1159
1237
|
onbeforeinput: (((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: Window, ev: InputEvent) => any)) | null;
|
|
1160
|
-
|
|
1238
|
+
onbeforematch: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1239
|
+
onbeforetoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
1161
1240
|
onblur: (((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: Window, ev: FocusEvent) => any)) | null;
|
|
1162
1241
|
oncancel: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1163
1242
|
oncanplay: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1164
1243
|
oncanplaythrough: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1165
1244
|
onchange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1166
|
-
onclick: (((this: GlobalEventHandlers, ev:
|
|
1245
|
+
onclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1167
1246
|
onclose: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1168
1247
|
oncontextlost: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1169
|
-
oncontextmenu: (((this: GlobalEventHandlers, ev:
|
|
1248
|
+
oncontextmenu: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1170
1249
|
oncontextrestored: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1171
1250
|
oncopy: (((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: Window, ev: ClipboardEvent) => any)) | null;
|
|
1172
1251
|
oncuechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -1214,6 +1293,7 @@ export declare const PopsRightClickMenu: {
|
|
|
1214
1293
|
onpointermove: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1215
1294
|
onpointerout: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1216
1295
|
onpointerover: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1296
|
+
onpointerrawupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1217
1297
|
onpointerup: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1218
1298
|
onprogress: (((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: Window, ev: ProgressEvent) => any)) | null;
|
|
1219
1299
|
onratechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -1232,7 +1312,7 @@ export declare const PopsRightClickMenu: {
|
|
|
1232
1312
|
onsubmit: (((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: Window, ev: SubmitEvent) => any)) | null;
|
|
1233
1313
|
onsuspend: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1234
1314
|
ontimeupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1235
|
-
ontoggle: (((this: GlobalEventHandlers, ev:
|
|
1315
|
+
ontoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
1236
1316
|
ontouchcancel: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
1237
1317
|
ontouchend: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
1238
1318
|
ontouchmove: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
@@ -1260,9 +1340,9 @@ export declare const PopsRightClickMenu: {
|
|
|
1260
1340
|
onoffline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1261
1341
|
ononline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1262
1342
|
onpagehide: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
1263
|
-
onpagereveal: (((this: WindowEventHandlers, ev:
|
|
1343
|
+
onpagereveal: (((this: WindowEventHandlers, ev: PageRevealEvent) => any) & ((this: Window, ev: PageRevealEvent) => any)) | null;
|
|
1264
1344
|
onpageshow: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
1265
|
-
onpageswap: (((this: WindowEventHandlers, ev:
|
|
1345
|
+
onpageswap: (((this: WindowEventHandlers, ev: PageSwapEvent) => any) & ((this: Window, ev: PageSwapEvent) => any)) | null;
|
|
1266
1346
|
onpopstate: (((this: WindowEventHandlers, ev: PopStateEvent) => any) & ((this: Window, ev: PopStateEvent) => any)) | null;
|
|
1267
1347
|
onrejectionhandled: (((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) & ((this: Window, ev: PromiseRejectionEvent) => any)) | null;
|
|
1268
1348
|
onstorage: (((this: WindowEventHandlers, ev: StorageEvent) => any) & ((this: Window, ev: StorageEvent) => any)) | null;
|
|
@@ -1314,7 +1394,7 @@ export declare const PopsRightClickMenu: {
|
|
|
1314
1394
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
1315
1395
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
1316
1396
|
};
|
|
1317
|
-
getRandomValues: <T extends ArrayBufferView
|
|
1397
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
1318
1398
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
1319
1399
|
};
|
|
1320
1400
|
indexedDB: {
|
|
@@ -1750,6 +1830,10 @@ export declare const PopsRightClickMenu: {
|
|
|
1750
1830
|
prototype: CDATASection;
|
|
1751
1831
|
new (): CDATASection;
|
|
1752
1832
|
};
|
|
1833
|
+
CSPViolationReportBody: {
|
|
1834
|
+
prototype: CSPViolationReportBody;
|
|
1835
|
+
new (): CSPViolationReportBody;
|
|
1836
|
+
};
|
|
1753
1837
|
CSSAnimation: {
|
|
1754
1838
|
prototype: CSSAnimation;
|
|
1755
1839
|
new (): CSSAnimation;
|
|
@@ -2063,6 +2147,18 @@ export declare const PopsRightClickMenu: {
|
|
|
2063
2147
|
prototype: ConvolverNode;
|
|
2064
2148
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
2065
2149
|
};
|
|
2150
|
+
CookieChangeEvent: {
|
|
2151
|
+
prototype: CookieChangeEvent;
|
|
2152
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
2153
|
+
};
|
|
2154
|
+
CookieStore: {
|
|
2155
|
+
prototype: CookieStore;
|
|
2156
|
+
new (): CookieStore;
|
|
2157
|
+
};
|
|
2158
|
+
CookieStoreManager: {
|
|
2159
|
+
prototype: CookieStoreManager;
|
|
2160
|
+
new (): CookieStoreManager;
|
|
2161
|
+
};
|
|
2066
2162
|
CountQueuingStrategy: {
|
|
2067
2163
|
prototype: CountQueuingStrategy;
|
|
2068
2164
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -2131,8 +2227,8 @@ export declare const PopsRightClickMenu: {
|
|
|
2131
2227
|
DOMMatrix: {
|
|
2132
2228
|
prototype: DOMMatrix;
|
|
2133
2229
|
new (init?: string | number[]): DOMMatrix;
|
|
2134
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
2135
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
2230
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
2231
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
2136
2232
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
2137
2233
|
};
|
|
2138
2234
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -2140,8 +2236,8 @@ export declare const PopsRightClickMenu: {
|
|
|
2140
2236
|
DOMMatrixReadOnly: {
|
|
2141
2237
|
prototype: DOMMatrixReadOnly;
|
|
2142
2238
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
2143
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
2144
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
2239
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2240
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2145
2241
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
2146
2242
|
};
|
|
2147
2243
|
DOMParser: {
|
|
@@ -2812,10 +2908,14 @@ export declare const PopsRightClickMenu: {
|
|
|
2812
2908
|
prototype: ImageBitmapRenderingContext;
|
|
2813
2909
|
new (): ImageBitmapRenderingContext;
|
|
2814
2910
|
};
|
|
2911
|
+
ImageCapture: {
|
|
2912
|
+
prototype: ImageCapture;
|
|
2913
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
2914
|
+
};
|
|
2815
2915
|
ImageData: {
|
|
2816
2916
|
prototype: ImageData;
|
|
2817
2917
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
2818
|
-
new (data:
|
|
2918
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
2819
2919
|
};
|
|
2820
2920
|
ImageDecoder: {
|
|
2821
2921
|
prototype: ImageDecoder;
|
|
@@ -3068,6 +3168,10 @@ export declare const PopsRightClickMenu: {
|
|
|
3068
3168
|
prototype: Navigator;
|
|
3069
3169
|
new (): Navigator;
|
|
3070
3170
|
};
|
|
3171
|
+
NavigatorLogin: {
|
|
3172
|
+
prototype: NavigatorLogin;
|
|
3173
|
+
new (): NavigatorLogin;
|
|
3174
|
+
};
|
|
3071
3175
|
Node: {
|
|
3072
3176
|
prototype: Node;
|
|
3073
3177
|
new (): Node;
|
|
@@ -3338,7 +3442,7 @@ export declare const PopsRightClickMenu: {
|
|
|
3338
3442
|
};
|
|
3339
3443
|
RTCIceCandidate: {
|
|
3340
3444
|
prototype: RTCIceCandidate;
|
|
3341
|
-
new (candidateInitDict?:
|
|
3445
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
3342
3446
|
};
|
|
3343
3447
|
RTCIceTransport: {
|
|
3344
3448
|
prototype: RTCIceTransport;
|
|
@@ -3411,13 +3515,13 @@ export declare const PopsRightClickMenu: {
|
|
|
3411
3515
|
prototype: ReadableStream;
|
|
3412
3516
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
3413
3517
|
highWaterMark?: number;
|
|
3414
|
-
}): ReadableStream<Uint8Array
|
|
3518
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
3415
3519
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
3416
3520
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
3417
3521
|
};
|
|
3418
3522
|
ReadableStreamBYOBReader: {
|
|
3419
3523
|
prototype: ReadableStreamBYOBReader;
|
|
3420
|
-
new (stream: ReadableStream<Uint8Array
|
|
3524
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
3421
3525
|
};
|
|
3422
3526
|
ReadableStreamBYOBRequest: {
|
|
3423
3527
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -5276,28 +5380,6 @@ export declare const PopsRightClickMenu: {
|
|
|
5276
5380
|
prototype: XSLTProcessor;
|
|
5277
5381
|
new (): XSLTProcessor;
|
|
5278
5382
|
};
|
|
5279
|
-
console: {
|
|
5280
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
5281
|
-
clear: () => void;
|
|
5282
|
-
count: (label?: string) => void;
|
|
5283
|
-
countReset: (label?: string) => void;
|
|
5284
|
-
debug: (...data: any[]) => void;
|
|
5285
|
-
dir: (item?: any, options?: any) => void;
|
|
5286
|
-
dirxml: (...data: any[]) => void;
|
|
5287
|
-
error: (...data: any[]) => void;
|
|
5288
|
-
group: (...data: any[]) => void;
|
|
5289
|
-
groupCollapsed: (...data: any[]) => void;
|
|
5290
|
-
groupEnd: () => void;
|
|
5291
|
-
info: (...data: any[]) => void;
|
|
5292
|
-
log: (...data: any[]) => void;
|
|
5293
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
5294
|
-
time: (label?: string) => void;
|
|
5295
|
-
timeEnd: (label?: string) => void;
|
|
5296
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
5297
|
-
timeStamp: (label?: string) => void;
|
|
5298
|
-
trace: (...data: any[]) => void;
|
|
5299
|
-
warn: (...data: any[]) => void;
|
|
5300
|
-
};
|
|
5301
5383
|
CSS: {
|
|
5302
5384
|
Hz: typeof CSS.Hz;
|
|
5303
5385
|
Q: typeof CSS.Q;
|
|
@@ -5413,6 +5495,28 @@ export declare const PopsRightClickMenu: {
|
|
|
5413
5495
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
5414
5496
|
};
|
|
5415
5497
|
};
|
|
5498
|
+
console: {
|
|
5499
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
5500
|
+
clear: () => void;
|
|
5501
|
+
count: (label?: string) => void;
|
|
5502
|
+
countReset: (label?: string) => void;
|
|
5503
|
+
debug: (...data: any[]) => void;
|
|
5504
|
+
dir: (item?: any, options?: any) => void;
|
|
5505
|
+
dirxml: (...data: any[]) => void;
|
|
5506
|
+
error: (...data: any[]) => void;
|
|
5507
|
+
group: (...data: any[]) => void;
|
|
5508
|
+
groupCollapsed: (...data: any[]) => void;
|
|
5509
|
+
groupEnd: () => void;
|
|
5510
|
+
info: (...data: any[]) => void;
|
|
5511
|
+
log: (...data: any[]) => void;
|
|
5512
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
5513
|
+
time: (label?: string) => void;
|
|
5514
|
+
timeEnd: (label?: string) => void;
|
|
5515
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
5516
|
+
timeStamp: (label?: string) => void;
|
|
5517
|
+
trace: (...data: any[]) => void;
|
|
5518
|
+
warn: (...data: any[]) => void;
|
|
5519
|
+
};
|
|
5416
5520
|
Audio: {
|
|
5417
5521
|
new (src?: string): HTMLAudioElement;
|
|
5418
5522
|
};
|
|
@@ -5444,6 +5548,9 @@ export declare const PopsRightClickMenu: {
|
|
|
5444
5548
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
5445
5549
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
5446
5550
|
};
|
|
5551
|
+
readonly login: {
|
|
5552
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
5553
|
+
};
|
|
5447
5554
|
readonly maxTouchPoints: number;
|
|
5448
5555
|
readonly mediaCapabilities: {
|
|
5449
5556
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -5478,6 +5585,8 @@ export declare const PopsRightClickMenu: {
|
|
|
5478
5585
|
} | null;
|
|
5479
5586
|
playbackState: MediaSessionPlaybackState;
|
|
5480
5587
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
5588
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
5589
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
5481
5590
|
setPositionState: (state?: MediaPositionState) => void;
|
|
5482
5591
|
};
|
|
5483
5592
|
readonly permissions: {
|
|
@@ -5560,8 +5669,8 @@ export declare const PopsRightClickMenu: {
|
|
|
5560
5669
|
readonly locks: {
|
|
5561
5670
|
query: () => Promise<LockManagerSnapshot>;
|
|
5562
5671
|
request: {
|
|
5563
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
5564
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
5672
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
5673
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
5565
5674
|
};
|
|
5566
5675
|
};
|
|
5567
5676
|
readonly onLine: boolean;
|
|
@@ -5614,6 +5723,34 @@ export declare const PopsRightClickMenu: {
|
|
|
5614
5723
|
};
|
|
5615
5724
|
};
|
|
5616
5725
|
closed: boolean;
|
|
5726
|
+
cookieStore: {
|
|
5727
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
5728
|
+
delete: {
|
|
5729
|
+
(name: string): Promise<void>;
|
|
5730
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
5731
|
+
};
|
|
5732
|
+
get: {
|
|
5733
|
+
(name: string): Promise<CookieListItem | null>;
|
|
5734
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
5735
|
+
};
|
|
5736
|
+
getAll: {
|
|
5737
|
+
(name: string): Promise<CookieList>;
|
|
5738
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
5739
|
+
};
|
|
5740
|
+
set: {
|
|
5741
|
+
(name: string, value: string): Promise<void>;
|
|
5742
|
+
(options: CookieInit): Promise<void>;
|
|
5743
|
+
};
|
|
5744
|
+
addEventListener: {
|
|
5745
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
5746
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
5747
|
+
};
|
|
5748
|
+
removeEventListener: {
|
|
5749
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
5750
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
5751
|
+
};
|
|
5752
|
+
dispatchEvent: (event: Event) => boolean;
|
|
5753
|
+
};
|
|
5617
5754
|
customElements: {
|
|
5618
5755
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
5619
5756
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -5727,6 +5864,9 @@ export declare const PopsRightClickMenu: {
|
|
|
5727
5864
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
5728
5865
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
5729
5866
|
};
|
|
5867
|
+
readonly login: {
|
|
5868
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
5869
|
+
};
|
|
5730
5870
|
readonly maxTouchPoints: number;
|
|
5731
5871
|
readonly mediaCapabilities: {
|
|
5732
5872
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -5761,6 +5901,8 @@ export declare const PopsRightClickMenu: {
|
|
|
5761
5901
|
} | null;
|
|
5762
5902
|
playbackState: MediaSessionPlaybackState;
|
|
5763
5903
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
5904
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
5905
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
5764
5906
|
setPositionState: (state?: MediaPositionState) => void;
|
|
5765
5907
|
};
|
|
5766
5908
|
readonly permissions: {
|
|
@@ -5843,8 +5985,8 @@ export declare const PopsRightClickMenu: {
|
|
|
5843
5985
|
readonly locks: {
|
|
5844
5986
|
query: () => Promise<LockManagerSnapshot>;
|
|
5845
5987
|
request: {
|
|
5846
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
5847
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
5988
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
5989
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
5848
5990
|
};
|
|
5849
5991
|
};
|
|
5850
5992
|
readonly onLine: boolean;
|
|
@@ -5902,6 +6044,7 @@ export declare const PopsRightClickMenu: {
|
|
|
5902
6044
|
onorientationchange: ((this: Window, ev: Event) => any) | null;
|
|
5903
6045
|
opener: any;
|
|
5904
6046
|
orientation: number;
|
|
6047
|
+
originAgentCluster: boolean;
|
|
5905
6048
|
outerHeight: number;
|
|
5906
6049
|
outerWidth: number;
|
|
5907
6050
|
pageXOffset: number;
|
|
@@ -5997,18 +6140,19 @@ export declare const PopsRightClickMenu: {
|
|
|
5997
6140
|
onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
5998
6141
|
onanimationiteration: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
5999
6142
|
onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
6000
|
-
onauxclick: ((this: Window, ev:
|
|
6143
|
+
onauxclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6001
6144
|
onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
|
|
6002
|
-
|
|
6145
|
+
onbeforematch: ((this: Window, ev: Event) => any) | null;
|
|
6146
|
+
onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
6003
6147
|
onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
|
6004
6148
|
oncancel: ((this: Window, ev: Event) => any) | null;
|
|
6005
6149
|
oncanplay: ((this: Window, ev: Event) => any) | null;
|
|
6006
6150
|
oncanplaythrough: ((this: Window, ev: Event) => any) | null;
|
|
6007
6151
|
onchange: ((this: Window, ev: Event) => any) | null;
|
|
6008
|
-
onclick: ((this: Window, ev:
|
|
6152
|
+
onclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6009
6153
|
onclose: ((this: Window, ev: Event) => any) | null;
|
|
6010
6154
|
oncontextlost: ((this: Window, ev: Event) => any) | null;
|
|
6011
|
-
oncontextmenu: ((this: Window, ev:
|
|
6155
|
+
oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6012
6156
|
oncontextrestored: ((this: Window, ev: Event) => any) | null;
|
|
6013
6157
|
oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
6014
6158
|
oncuechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -6056,6 +6200,7 @@ export declare const PopsRightClickMenu: {
|
|
|
6056
6200
|
onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6057
6201
|
onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6058
6202
|
onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6203
|
+
onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
|
|
6059
6204
|
onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6060
6205
|
onprogress: ((this: Window, ev: ProgressEvent) => any) | null;
|
|
6061
6206
|
onratechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -6074,7 +6219,7 @@ export declare const PopsRightClickMenu: {
|
|
|
6074
6219
|
onsubmit: ((this: Window, ev: SubmitEvent) => any) | null;
|
|
6075
6220
|
onsuspend: ((this: Window, ev: Event) => any) | null;
|
|
6076
6221
|
ontimeupdate: ((this: Window, ev: Event) => any) | null;
|
|
6077
|
-
ontoggle: ((this: Window, ev:
|
|
6222
|
+
ontoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
6078
6223
|
ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
6079
6224
|
ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
6080
6225
|
ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -6102,9 +6247,9 @@ export declare const PopsRightClickMenu: {
|
|
|
6102
6247
|
onoffline: ((this: Window, ev: Event) => any) | null;
|
|
6103
6248
|
ononline: ((this: Window, ev: Event) => any) | null;
|
|
6104
6249
|
onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
6105
|
-
onpagereveal: ((this: Window, ev:
|
|
6250
|
+
onpagereveal: ((this: Window, ev: PageRevealEvent) => any) | null;
|
|
6106
6251
|
onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
6107
|
-
onpageswap: ((this: Window, ev:
|
|
6252
|
+
onpageswap: ((this: Window, ev: PageSwapEvent) => any) | null;
|
|
6108
6253
|
onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
|
|
6109
6254
|
onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
6110
6255
|
onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
@@ -6156,7 +6301,7 @@ export declare const PopsRightClickMenu: {
|
|
|
6156
6301
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
6157
6302
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
6158
6303
|
};
|
|
6159
|
-
getRandomValues: <T extends ArrayBufferView
|
|
6304
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
6160
6305
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
6161
6306
|
};
|
|
6162
6307
|
indexedDB: {
|
|
@@ -6320,6 +6465,7 @@ export declare const PopsRightClickMenu: {
|
|
|
6320
6465
|
value: Promise<"ok" | "timed-out">;
|
|
6321
6466
|
};
|
|
6322
6467
|
};
|
|
6468
|
+
pause: (n?: number) => void;
|
|
6323
6469
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
6324
6470
|
};
|
|
6325
6471
|
BigInt: BigIntConstructor;
|
|
@@ -6635,6 +6781,10 @@ export declare const PopsRightClickMenu: {
|
|
|
6635
6781
|
prototype: CDATASection;
|
|
6636
6782
|
new (): CDATASection;
|
|
6637
6783
|
};
|
|
6784
|
+
CSPViolationReportBody: {
|
|
6785
|
+
prototype: CSPViolationReportBody;
|
|
6786
|
+
new (): CSPViolationReportBody;
|
|
6787
|
+
};
|
|
6638
6788
|
CSSAnimation: {
|
|
6639
6789
|
prototype: CSSAnimation;
|
|
6640
6790
|
new (): CSSAnimation;
|
|
@@ -6948,6 +7098,18 @@ export declare const PopsRightClickMenu: {
|
|
|
6948
7098
|
prototype: ConvolverNode;
|
|
6949
7099
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
6950
7100
|
};
|
|
7101
|
+
CookieChangeEvent: {
|
|
7102
|
+
prototype: CookieChangeEvent;
|
|
7103
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
7104
|
+
};
|
|
7105
|
+
CookieStore: {
|
|
7106
|
+
prototype: CookieStore;
|
|
7107
|
+
new (): CookieStore;
|
|
7108
|
+
};
|
|
7109
|
+
CookieStoreManager: {
|
|
7110
|
+
prototype: CookieStoreManager;
|
|
7111
|
+
new (): CookieStoreManager;
|
|
7112
|
+
};
|
|
6951
7113
|
CountQueuingStrategy: {
|
|
6952
7114
|
prototype: CountQueuingStrategy;
|
|
6953
7115
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -7016,8 +7178,8 @@ export declare const PopsRightClickMenu: {
|
|
|
7016
7178
|
DOMMatrix: {
|
|
7017
7179
|
prototype: DOMMatrix;
|
|
7018
7180
|
new (init?: string | number[]): DOMMatrix;
|
|
7019
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
7020
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
7181
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
7182
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
7021
7183
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
7022
7184
|
};
|
|
7023
7185
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -7025,8 +7187,8 @@ export declare const PopsRightClickMenu: {
|
|
|
7025
7187
|
DOMMatrixReadOnly: {
|
|
7026
7188
|
prototype: DOMMatrixReadOnly;
|
|
7027
7189
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
7028
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
7029
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
7190
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
7191
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
7030
7192
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
7031
7193
|
};
|
|
7032
7194
|
DOMParser: {
|
|
@@ -7697,10 +7859,14 @@ export declare const PopsRightClickMenu: {
|
|
|
7697
7859
|
prototype: ImageBitmapRenderingContext;
|
|
7698
7860
|
new (): ImageBitmapRenderingContext;
|
|
7699
7861
|
};
|
|
7862
|
+
ImageCapture: {
|
|
7863
|
+
prototype: ImageCapture;
|
|
7864
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
7865
|
+
};
|
|
7700
7866
|
ImageData: {
|
|
7701
7867
|
prototype: ImageData;
|
|
7702
7868
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
7703
|
-
new (data:
|
|
7869
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
7704
7870
|
};
|
|
7705
7871
|
ImageDecoder: {
|
|
7706
7872
|
prototype: ImageDecoder;
|
|
@@ -7953,6 +8119,10 @@ export declare const PopsRightClickMenu: {
|
|
|
7953
8119
|
prototype: Navigator;
|
|
7954
8120
|
new (): Navigator;
|
|
7955
8121
|
};
|
|
8122
|
+
NavigatorLogin: {
|
|
8123
|
+
prototype: NavigatorLogin;
|
|
8124
|
+
new (): NavigatorLogin;
|
|
8125
|
+
};
|
|
7956
8126
|
Node: {
|
|
7957
8127
|
prototype: Node;
|
|
7958
8128
|
new (): Node;
|
|
@@ -8223,7 +8393,7 @@ export declare const PopsRightClickMenu: {
|
|
|
8223
8393
|
};
|
|
8224
8394
|
RTCIceCandidate: {
|
|
8225
8395
|
prototype: RTCIceCandidate;
|
|
8226
|
-
new (candidateInitDict?:
|
|
8396
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
8227
8397
|
};
|
|
8228
8398
|
RTCIceTransport: {
|
|
8229
8399
|
prototype: RTCIceTransport;
|
|
@@ -8296,13 +8466,13 @@ export declare const PopsRightClickMenu: {
|
|
|
8296
8466
|
prototype: ReadableStream;
|
|
8297
8467
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
8298
8468
|
highWaterMark?: number;
|
|
8299
|
-
}): ReadableStream<Uint8Array
|
|
8469
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
8300
8470
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
8301
8471
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
8302
8472
|
};
|
|
8303
8473
|
ReadableStreamBYOBReader: {
|
|
8304
8474
|
prototype: ReadableStreamBYOBReader;
|
|
8305
|
-
new (stream: ReadableStream<Uint8Array
|
|
8475
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
8306
8476
|
};
|
|
8307
8477
|
ReadableStreamBYOBRequest: {
|
|
8308
8478
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -10161,28 +10331,6 @@ export declare const PopsRightClickMenu: {
|
|
|
10161
10331
|
prototype: XSLTProcessor;
|
|
10162
10332
|
new (): XSLTProcessor;
|
|
10163
10333
|
};
|
|
10164
|
-
console: {
|
|
10165
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
10166
|
-
clear: () => void;
|
|
10167
|
-
count: (label?: string) => void;
|
|
10168
|
-
countReset: (label?: string) => void;
|
|
10169
|
-
debug: (...data: any[]) => void;
|
|
10170
|
-
dir: (item?: any, options?: any) => void;
|
|
10171
|
-
dirxml: (...data: any[]) => void;
|
|
10172
|
-
error: (...data: any[]) => void;
|
|
10173
|
-
group: (...data: any[]) => void;
|
|
10174
|
-
groupCollapsed: (...data: any[]) => void;
|
|
10175
|
-
groupEnd: () => void;
|
|
10176
|
-
info: (...data: any[]) => void;
|
|
10177
|
-
log: (...data: any[]) => void;
|
|
10178
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
10179
|
-
time: (label?: string) => void;
|
|
10180
|
-
timeEnd: (label?: string) => void;
|
|
10181
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
10182
|
-
timeStamp: (label?: string) => void;
|
|
10183
|
-
trace: (...data: any[]) => void;
|
|
10184
|
-
warn: (...data: any[]) => void;
|
|
10185
|
-
};
|
|
10186
10334
|
CSS: {
|
|
10187
10335
|
Hz: typeof CSS.Hz;
|
|
10188
10336
|
Q: typeof CSS.Q;
|
|
@@ -10298,6 +10446,28 @@ export declare const PopsRightClickMenu: {
|
|
|
10298
10446
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
10299
10447
|
};
|
|
10300
10448
|
};
|
|
10449
|
+
console: {
|
|
10450
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
10451
|
+
clear: () => void;
|
|
10452
|
+
count: (label?: string) => void;
|
|
10453
|
+
countReset: (label?: string) => void;
|
|
10454
|
+
debug: (...data: any[]) => void;
|
|
10455
|
+
dir: (item?: any, options?: any) => void;
|
|
10456
|
+
dirxml: (...data: any[]) => void;
|
|
10457
|
+
error: (...data: any[]) => void;
|
|
10458
|
+
group: (...data: any[]) => void;
|
|
10459
|
+
groupCollapsed: (...data: any[]) => void;
|
|
10460
|
+
groupEnd: () => void;
|
|
10461
|
+
info: (...data: any[]) => void;
|
|
10462
|
+
log: (...data: any[]) => void;
|
|
10463
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
10464
|
+
time: (label?: string) => void;
|
|
10465
|
+
timeEnd: (label?: string) => void;
|
|
10466
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
10467
|
+
timeStamp: (label?: string) => void;
|
|
10468
|
+
trace: (...data: any[]) => void;
|
|
10469
|
+
warn: (...data: any[]) => void;
|
|
10470
|
+
};
|
|
10301
10471
|
Audio: {
|
|
10302
10472
|
new (src?: string): HTMLAudioElement;
|
|
10303
10473
|
};
|
|
@@ -10391,6 +10561,7 @@ export declare const PopsRightClickMenu: {
|
|
|
10391
10561
|
value: Promise<"ok" | "timed-out">;
|
|
10392
10562
|
};
|
|
10393
10563
|
};
|
|
10564
|
+
pause: (n?: number) => void;
|
|
10394
10565
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
10395
10566
|
};
|
|
10396
10567
|
BigInt: BigIntConstructor;
|
|
@@ -10478,6 +10649,9 @@ export declare const PopsRightClickMenu: {
|
|
|
10478
10649
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
10479
10650
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
10480
10651
|
};
|
|
10652
|
+
readonly login: {
|
|
10653
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
10654
|
+
};
|
|
10481
10655
|
readonly maxTouchPoints: number;
|
|
10482
10656
|
readonly mediaCapabilities: {
|
|
10483
10657
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -10512,6 +10686,8 @@ export declare const PopsRightClickMenu: {
|
|
|
10512
10686
|
} | null;
|
|
10513
10687
|
playbackState: MediaSessionPlaybackState;
|
|
10514
10688
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
10689
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
10690
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
10515
10691
|
setPositionState: (state?: MediaPositionState) => void;
|
|
10516
10692
|
};
|
|
10517
10693
|
readonly permissions: {
|
|
@@ -10594,8 +10770,8 @@ export declare const PopsRightClickMenu: {
|
|
|
10594
10770
|
readonly locks: {
|
|
10595
10771
|
query: () => Promise<LockManagerSnapshot>;
|
|
10596
10772
|
request: {
|
|
10597
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
10598
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
10773
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
10774
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
10599
10775
|
};
|
|
10600
10776
|
};
|
|
10601
10777
|
readonly onLine: boolean;
|
|
@@ -10648,6 +10824,34 @@ export declare const PopsRightClickMenu: {
|
|
|
10648
10824
|
};
|
|
10649
10825
|
};
|
|
10650
10826
|
closed: boolean;
|
|
10827
|
+
cookieStore: {
|
|
10828
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
10829
|
+
delete: {
|
|
10830
|
+
(name: string): Promise<void>;
|
|
10831
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
10832
|
+
};
|
|
10833
|
+
get: {
|
|
10834
|
+
(name: string): Promise<CookieListItem | null>;
|
|
10835
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
10836
|
+
};
|
|
10837
|
+
getAll: {
|
|
10838
|
+
(name: string): Promise<CookieList>;
|
|
10839
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
10840
|
+
};
|
|
10841
|
+
set: {
|
|
10842
|
+
(name: string, value: string): Promise<void>;
|
|
10843
|
+
(options: CookieInit): Promise<void>;
|
|
10844
|
+
};
|
|
10845
|
+
addEventListener: {
|
|
10846
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
10847
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
10848
|
+
};
|
|
10849
|
+
removeEventListener: {
|
|
10850
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
10851
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
10852
|
+
};
|
|
10853
|
+
dispatchEvent: (event: Event) => boolean;
|
|
10854
|
+
};
|
|
10651
10855
|
customElements: {
|
|
10652
10856
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
10653
10857
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -10762,6 +10966,9 @@ export declare const PopsRightClickMenu: {
|
|
|
10762
10966
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
10763
10967
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
10764
10968
|
};
|
|
10969
|
+
readonly login: {
|
|
10970
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
10971
|
+
};
|
|
10765
10972
|
readonly maxTouchPoints: number;
|
|
10766
10973
|
readonly mediaCapabilities: {
|
|
10767
10974
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -10796,6 +11003,8 @@ export declare const PopsRightClickMenu: {
|
|
|
10796
11003
|
} | null;
|
|
10797
11004
|
playbackState: MediaSessionPlaybackState;
|
|
10798
11005
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
11006
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
11007
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
10799
11008
|
setPositionState: (state?: MediaPositionState) => void;
|
|
10800
11009
|
};
|
|
10801
11010
|
readonly permissions: {
|
|
@@ -10878,8 +11087,8 @@ export declare const PopsRightClickMenu: {
|
|
|
10878
11087
|
readonly locks: {
|
|
10879
11088
|
query: () => Promise<LockManagerSnapshot>;
|
|
10880
11089
|
request: {
|
|
10881
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
10882
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
11090
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
11091
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
10883
11092
|
};
|
|
10884
11093
|
};
|
|
10885
11094
|
readonly onLine: boolean;
|
|
@@ -10937,6 +11146,7 @@ export declare const PopsRightClickMenu: {
|
|
|
10937
11146
|
onorientationchange: (((this: Window, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
10938
11147
|
opener: any;
|
|
10939
11148
|
orientation: number;
|
|
11149
|
+
originAgentCluster: boolean;
|
|
10940
11150
|
outerHeight: number;
|
|
10941
11151
|
outerWidth: number;
|
|
10942
11152
|
pageXOffset: number;
|
|
@@ -11079,18 +11289,19 @@ export declare const PopsRightClickMenu: {
|
|
|
11079
11289
|
onanimationend: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
11080
11290
|
onanimationiteration: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
11081
11291
|
onanimationstart: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
11082
|
-
onauxclick: (((this: GlobalEventHandlers, ev:
|
|
11292
|
+
onauxclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11083
11293
|
onbeforeinput: (((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: Window, ev: InputEvent) => any)) | null;
|
|
11084
|
-
|
|
11294
|
+
onbeforematch: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11295
|
+
onbeforetoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
11085
11296
|
onblur: (((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: Window, ev: FocusEvent) => any)) | null;
|
|
11086
11297
|
oncancel: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11087
11298
|
oncanplay: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11088
11299
|
oncanplaythrough: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11089
11300
|
onchange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11090
|
-
onclick: (((this: GlobalEventHandlers, ev:
|
|
11301
|
+
onclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11091
11302
|
onclose: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11092
11303
|
oncontextlost: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11093
|
-
oncontextmenu: (((this: GlobalEventHandlers, ev:
|
|
11304
|
+
oncontextmenu: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11094
11305
|
oncontextrestored: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11095
11306
|
oncopy: (((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: Window, ev: ClipboardEvent) => any)) | null;
|
|
11096
11307
|
oncuechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -11138,6 +11349,7 @@ export declare const PopsRightClickMenu: {
|
|
|
11138
11349
|
onpointermove: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11139
11350
|
onpointerout: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11140
11351
|
onpointerover: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11352
|
+
onpointerrawupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11141
11353
|
onpointerup: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11142
11354
|
onprogress: (((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: Window, ev: ProgressEvent) => any)) | null;
|
|
11143
11355
|
onratechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -11156,7 +11368,7 @@ export declare const PopsRightClickMenu: {
|
|
|
11156
11368
|
onsubmit: (((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: Window, ev: SubmitEvent) => any)) | null;
|
|
11157
11369
|
onsuspend: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11158
11370
|
ontimeupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11159
|
-
ontoggle: (((this: GlobalEventHandlers, ev:
|
|
11371
|
+
ontoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
11160
11372
|
ontouchcancel: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
11161
11373
|
ontouchend: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
11162
11374
|
ontouchmove: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
@@ -11184,9 +11396,9 @@ export declare const PopsRightClickMenu: {
|
|
|
11184
11396
|
onoffline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11185
11397
|
ononline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11186
11398
|
onpagehide: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
11187
|
-
onpagereveal: (((this: WindowEventHandlers, ev:
|
|
11399
|
+
onpagereveal: (((this: WindowEventHandlers, ev: PageRevealEvent) => any) & ((this: Window, ev: PageRevealEvent) => any)) | null;
|
|
11188
11400
|
onpageshow: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
11189
|
-
onpageswap: (((this: WindowEventHandlers, ev:
|
|
11401
|
+
onpageswap: (((this: WindowEventHandlers, ev: PageSwapEvent) => any) & ((this: Window, ev: PageSwapEvent) => any)) | null;
|
|
11190
11402
|
onpopstate: (((this: WindowEventHandlers, ev: PopStateEvent) => any) & ((this: Window, ev: PopStateEvent) => any)) | null;
|
|
11191
11403
|
onrejectionhandled: (((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) & ((this: Window, ev: PromiseRejectionEvent) => any)) | null;
|
|
11192
11404
|
onstorage: (((this: WindowEventHandlers, ev: StorageEvent) => any) & ((this: Window, ev: StorageEvent) => any)) | null;
|
|
@@ -11238,7 +11450,7 @@ export declare const PopsRightClickMenu: {
|
|
|
11238
11450
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
11239
11451
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
11240
11452
|
};
|
|
11241
|
-
getRandomValues: <T extends ArrayBufferView
|
|
11453
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
11242
11454
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
11243
11455
|
};
|
|
11244
11456
|
indexedDB: {
|
|
@@ -11674,6 +11886,10 @@ export declare const PopsRightClickMenu: {
|
|
|
11674
11886
|
prototype: CDATASection;
|
|
11675
11887
|
new (): CDATASection;
|
|
11676
11888
|
};
|
|
11889
|
+
CSPViolationReportBody: {
|
|
11890
|
+
prototype: CSPViolationReportBody;
|
|
11891
|
+
new (): CSPViolationReportBody;
|
|
11892
|
+
};
|
|
11677
11893
|
CSSAnimation: {
|
|
11678
11894
|
prototype: CSSAnimation;
|
|
11679
11895
|
new (): CSSAnimation;
|
|
@@ -11987,6 +12203,18 @@ export declare const PopsRightClickMenu: {
|
|
|
11987
12203
|
prototype: ConvolverNode;
|
|
11988
12204
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
11989
12205
|
};
|
|
12206
|
+
CookieChangeEvent: {
|
|
12207
|
+
prototype: CookieChangeEvent;
|
|
12208
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
12209
|
+
};
|
|
12210
|
+
CookieStore: {
|
|
12211
|
+
prototype: CookieStore;
|
|
12212
|
+
new (): CookieStore;
|
|
12213
|
+
};
|
|
12214
|
+
CookieStoreManager: {
|
|
12215
|
+
prototype: CookieStoreManager;
|
|
12216
|
+
new (): CookieStoreManager;
|
|
12217
|
+
};
|
|
11990
12218
|
CountQueuingStrategy: {
|
|
11991
12219
|
prototype: CountQueuingStrategy;
|
|
11992
12220
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -12055,8 +12283,8 @@ export declare const PopsRightClickMenu: {
|
|
|
12055
12283
|
DOMMatrix: {
|
|
12056
12284
|
prototype: DOMMatrix;
|
|
12057
12285
|
new (init?: string | number[]): DOMMatrix;
|
|
12058
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
12059
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
12286
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
12287
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
12060
12288
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
12061
12289
|
};
|
|
12062
12290
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -12064,8 +12292,8 @@ export declare const PopsRightClickMenu: {
|
|
|
12064
12292
|
DOMMatrixReadOnly: {
|
|
12065
12293
|
prototype: DOMMatrixReadOnly;
|
|
12066
12294
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
12067
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
12068
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
12295
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
12296
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
12069
12297
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
12070
12298
|
};
|
|
12071
12299
|
DOMParser: {
|
|
@@ -12736,10 +12964,14 @@ export declare const PopsRightClickMenu: {
|
|
|
12736
12964
|
prototype: ImageBitmapRenderingContext;
|
|
12737
12965
|
new (): ImageBitmapRenderingContext;
|
|
12738
12966
|
};
|
|
12967
|
+
ImageCapture: {
|
|
12968
|
+
prototype: ImageCapture;
|
|
12969
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
12970
|
+
};
|
|
12739
12971
|
ImageData: {
|
|
12740
12972
|
prototype: ImageData;
|
|
12741
12973
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
12742
|
-
new (data:
|
|
12974
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
12743
12975
|
};
|
|
12744
12976
|
ImageDecoder: {
|
|
12745
12977
|
prototype: ImageDecoder;
|
|
@@ -12992,6 +13224,10 @@ export declare const PopsRightClickMenu: {
|
|
|
12992
13224
|
prototype: Navigator;
|
|
12993
13225
|
new (): Navigator;
|
|
12994
13226
|
};
|
|
13227
|
+
NavigatorLogin: {
|
|
13228
|
+
prototype: NavigatorLogin;
|
|
13229
|
+
new (): NavigatorLogin;
|
|
13230
|
+
};
|
|
12995
13231
|
Node: {
|
|
12996
13232
|
prototype: Node;
|
|
12997
13233
|
new (): Node;
|
|
@@ -13262,7 +13498,7 @@ export declare const PopsRightClickMenu: {
|
|
|
13262
13498
|
};
|
|
13263
13499
|
RTCIceCandidate: {
|
|
13264
13500
|
prototype: RTCIceCandidate;
|
|
13265
|
-
new (candidateInitDict?:
|
|
13501
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
13266
13502
|
};
|
|
13267
13503
|
RTCIceTransport: {
|
|
13268
13504
|
prototype: RTCIceTransport;
|
|
@@ -13335,13 +13571,13 @@ export declare const PopsRightClickMenu: {
|
|
|
13335
13571
|
prototype: ReadableStream;
|
|
13336
13572
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
13337
13573
|
highWaterMark?: number;
|
|
13338
|
-
}): ReadableStream<Uint8Array
|
|
13574
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
13339
13575
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
13340
13576
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
13341
13577
|
};
|
|
13342
13578
|
ReadableStreamBYOBReader: {
|
|
13343
13579
|
prototype: ReadableStreamBYOBReader;
|
|
13344
|
-
new (stream: ReadableStream<Uint8Array
|
|
13580
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
13345
13581
|
};
|
|
13346
13582
|
ReadableStreamBYOBRequest: {
|
|
13347
13583
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -15200,28 +15436,6 @@ export declare const PopsRightClickMenu: {
|
|
|
15200
15436
|
prototype: XSLTProcessor;
|
|
15201
15437
|
new (): XSLTProcessor;
|
|
15202
15438
|
};
|
|
15203
|
-
console: {
|
|
15204
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
15205
|
-
clear: () => void;
|
|
15206
|
-
count: (label?: string) => void;
|
|
15207
|
-
countReset: (label?: string) => void;
|
|
15208
|
-
debug: (...data: any[]) => void;
|
|
15209
|
-
dir: (item?: any, options?: any) => void;
|
|
15210
|
-
dirxml: (...data: any[]) => void;
|
|
15211
|
-
error: (...data: any[]) => void;
|
|
15212
|
-
group: (...data: any[]) => void;
|
|
15213
|
-
groupCollapsed: (...data: any[]) => void;
|
|
15214
|
-
groupEnd: () => void;
|
|
15215
|
-
info: (...data: any[]) => void;
|
|
15216
|
-
log: (...data: any[]) => void;
|
|
15217
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
15218
|
-
time: (label?: string) => void;
|
|
15219
|
-
timeEnd: (label?: string) => void;
|
|
15220
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
15221
|
-
timeStamp: (label?: string) => void;
|
|
15222
|
-
trace: (...data: any[]) => void;
|
|
15223
|
-
warn: (...data: any[]) => void;
|
|
15224
|
-
};
|
|
15225
15439
|
CSS: {
|
|
15226
15440
|
Hz: typeof CSS.Hz;
|
|
15227
15441
|
Q: typeof CSS.Q;
|
|
@@ -15337,6 +15551,28 @@ export declare const PopsRightClickMenu: {
|
|
|
15337
15551
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
15338
15552
|
};
|
|
15339
15553
|
};
|
|
15554
|
+
console: {
|
|
15555
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
15556
|
+
clear: () => void;
|
|
15557
|
+
count: (label?: string) => void;
|
|
15558
|
+
countReset: (label?: string) => void;
|
|
15559
|
+
debug: (...data: any[]) => void;
|
|
15560
|
+
dir: (item?: any, options?: any) => void;
|
|
15561
|
+
dirxml: (...data: any[]) => void;
|
|
15562
|
+
error: (...data: any[]) => void;
|
|
15563
|
+
group: (...data: any[]) => void;
|
|
15564
|
+
groupCollapsed: (...data: any[]) => void;
|
|
15565
|
+
groupEnd: () => void;
|
|
15566
|
+
info: (...data: any[]) => void;
|
|
15567
|
+
log: (...data: any[]) => void;
|
|
15568
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
15569
|
+
time: (label?: string) => void;
|
|
15570
|
+
timeEnd: (label?: string) => void;
|
|
15571
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
15572
|
+
timeStamp: (label?: string) => void;
|
|
15573
|
+
trace: (...data: any[]) => void;
|
|
15574
|
+
warn: (...data: any[]) => void;
|
|
15575
|
+
};
|
|
15340
15576
|
Audio: {
|
|
15341
15577
|
new (src?: string): HTMLAudioElement;
|
|
15342
15578
|
};
|
|
@@ -15368,6 +15604,9 @@ export declare const PopsRightClickMenu: {
|
|
|
15368
15604
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
15369
15605
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
15370
15606
|
};
|
|
15607
|
+
readonly login: {
|
|
15608
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
15609
|
+
};
|
|
15371
15610
|
readonly maxTouchPoints: number;
|
|
15372
15611
|
readonly mediaCapabilities: {
|
|
15373
15612
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -15402,6 +15641,8 @@ export declare const PopsRightClickMenu: {
|
|
|
15402
15641
|
} | null;
|
|
15403
15642
|
playbackState: MediaSessionPlaybackState;
|
|
15404
15643
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
15644
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
15645
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
15405
15646
|
setPositionState: (state?: MediaPositionState) => void;
|
|
15406
15647
|
};
|
|
15407
15648
|
readonly permissions: {
|
|
@@ -15484,8 +15725,8 @@ export declare const PopsRightClickMenu: {
|
|
|
15484
15725
|
readonly locks: {
|
|
15485
15726
|
query: () => Promise<LockManagerSnapshot>;
|
|
15486
15727
|
request: {
|
|
15487
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
15488
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
15728
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
15729
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
15489
15730
|
};
|
|
15490
15731
|
};
|
|
15491
15732
|
readonly onLine: boolean;
|
|
@@ -15538,6 +15779,34 @@ export declare const PopsRightClickMenu: {
|
|
|
15538
15779
|
};
|
|
15539
15780
|
};
|
|
15540
15781
|
closed: boolean;
|
|
15782
|
+
cookieStore: {
|
|
15783
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
15784
|
+
delete: {
|
|
15785
|
+
(name: string): Promise<void>;
|
|
15786
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
15787
|
+
};
|
|
15788
|
+
get: {
|
|
15789
|
+
(name: string): Promise<CookieListItem | null>;
|
|
15790
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
15791
|
+
};
|
|
15792
|
+
getAll: {
|
|
15793
|
+
(name: string): Promise<CookieList>;
|
|
15794
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
15795
|
+
};
|
|
15796
|
+
set: {
|
|
15797
|
+
(name: string, value: string): Promise<void>;
|
|
15798
|
+
(options: CookieInit): Promise<void>;
|
|
15799
|
+
};
|
|
15800
|
+
addEventListener: {
|
|
15801
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
15802
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
15803
|
+
};
|
|
15804
|
+
removeEventListener: {
|
|
15805
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
15806
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
15807
|
+
};
|
|
15808
|
+
dispatchEvent: (event: Event) => boolean;
|
|
15809
|
+
};
|
|
15541
15810
|
customElements: {
|
|
15542
15811
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
15543
15812
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -15651,6 +15920,9 @@ export declare const PopsRightClickMenu: {
|
|
|
15651
15920
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
15652
15921
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
15653
15922
|
};
|
|
15923
|
+
readonly login: {
|
|
15924
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
15925
|
+
};
|
|
15654
15926
|
readonly maxTouchPoints: number;
|
|
15655
15927
|
readonly mediaCapabilities: {
|
|
15656
15928
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -15685,6 +15957,8 @@ export declare const PopsRightClickMenu: {
|
|
|
15685
15957
|
} | null;
|
|
15686
15958
|
playbackState: MediaSessionPlaybackState;
|
|
15687
15959
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
15960
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
15961
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
15688
15962
|
setPositionState: (state?: MediaPositionState) => void;
|
|
15689
15963
|
};
|
|
15690
15964
|
readonly permissions: {
|
|
@@ -15767,8 +16041,8 @@ export declare const PopsRightClickMenu: {
|
|
|
15767
16041
|
readonly locks: {
|
|
15768
16042
|
query: () => Promise<LockManagerSnapshot>;
|
|
15769
16043
|
request: {
|
|
15770
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
15771
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
16044
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
16045
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
15772
16046
|
};
|
|
15773
16047
|
};
|
|
15774
16048
|
readonly onLine: boolean;
|
|
@@ -15826,6 +16100,7 @@ export declare const PopsRightClickMenu: {
|
|
|
15826
16100
|
onorientationchange: ((this: Window, ev: Event) => any) | null;
|
|
15827
16101
|
opener: any;
|
|
15828
16102
|
orientation: number;
|
|
16103
|
+
originAgentCluster: boolean;
|
|
15829
16104
|
outerHeight: number;
|
|
15830
16105
|
outerWidth: number;
|
|
15831
16106
|
pageXOffset: number;
|
|
@@ -15921,18 +16196,19 @@ export declare const PopsRightClickMenu: {
|
|
|
15921
16196
|
onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
15922
16197
|
onanimationiteration: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
15923
16198
|
onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
15924
|
-
onauxclick: ((this: Window, ev:
|
|
16199
|
+
onauxclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
15925
16200
|
onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
|
|
15926
|
-
|
|
16201
|
+
onbeforematch: ((this: Window, ev: Event) => any) | null;
|
|
16202
|
+
onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
15927
16203
|
onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
|
15928
16204
|
oncancel: ((this: Window, ev: Event) => any) | null;
|
|
15929
16205
|
oncanplay: ((this: Window, ev: Event) => any) | null;
|
|
15930
16206
|
oncanplaythrough: ((this: Window, ev: Event) => any) | null;
|
|
15931
16207
|
onchange: ((this: Window, ev: Event) => any) | null;
|
|
15932
|
-
onclick: ((this: Window, ev:
|
|
16208
|
+
onclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
15933
16209
|
onclose: ((this: Window, ev: Event) => any) | null;
|
|
15934
16210
|
oncontextlost: ((this: Window, ev: Event) => any) | null;
|
|
15935
|
-
oncontextmenu: ((this: Window, ev:
|
|
16211
|
+
oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null;
|
|
15936
16212
|
oncontextrestored: ((this: Window, ev: Event) => any) | null;
|
|
15937
16213
|
oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
15938
16214
|
oncuechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -15980,6 +16256,7 @@ export declare const PopsRightClickMenu: {
|
|
|
15980
16256
|
onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
|
|
15981
16257
|
onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
|
|
15982
16258
|
onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16259
|
+
onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
|
|
15983
16260
|
onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
|
|
15984
16261
|
onprogress: ((this: Window, ev: ProgressEvent) => any) | null;
|
|
15985
16262
|
onratechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -15998,7 +16275,7 @@ export declare const PopsRightClickMenu: {
|
|
|
15998
16275
|
onsubmit: ((this: Window, ev: SubmitEvent) => any) | null;
|
|
15999
16276
|
onsuspend: ((this: Window, ev: Event) => any) | null;
|
|
16000
16277
|
ontimeupdate: ((this: Window, ev: Event) => any) | null;
|
|
16001
|
-
ontoggle: ((this: Window, ev:
|
|
16278
|
+
ontoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
16002
16279
|
ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
16003
16280
|
ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
16004
16281
|
ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -16026,9 +16303,9 @@ export declare const PopsRightClickMenu: {
|
|
|
16026
16303
|
onoffline: ((this: Window, ev: Event) => any) | null;
|
|
16027
16304
|
ononline: ((this: Window, ev: Event) => any) | null;
|
|
16028
16305
|
onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
16029
|
-
onpagereveal: ((this: Window, ev:
|
|
16306
|
+
onpagereveal: ((this: Window, ev: PageRevealEvent) => any) | null;
|
|
16030
16307
|
onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
16031
|
-
onpageswap: ((this: Window, ev:
|
|
16308
|
+
onpageswap: ((this: Window, ev: PageSwapEvent) => any) | null;
|
|
16032
16309
|
onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
|
|
16033
16310
|
onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
16034
16311
|
onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
@@ -16080,7 +16357,7 @@ export declare const PopsRightClickMenu: {
|
|
|
16080
16357
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
16081
16358
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
16082
16359
|
};
|
|
16083
|
-
getRandomValues: <T extends ArrayBufferView
|
|
16360
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
16084
16361
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
16085
16362
|
};
|
|
16086
16363
|
indexedDB: {
|
|
@@ -16244,6 +16521,7 @@ export declare const PopsRightClickMenu: {
|
|
|
16244
16521
|
value: Promise<"ok" | "timed-out">;
|
|
16245
16522
|
};
|
|
16246
16523
|
};
|
|
16524
|
+
pause: (n?: number) => void;
|
|
16247
16525
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
16248
16526
|
};
|
|
16249
16527
|
BigInt: BigIntConstructor;
|
|
@@ -16559,6 +16837,10 @@ export declare const PopsRightClickMenu: {
|
|
|
16559
16837
|
prototype: CDATASection;
|
|
16560
16838
|
new (): CDATASection;
|
|
16561
16839
|
};
|
|
16840
|
+
CSPViolationReportBody: {
|
|
16841
|
+
prototype: CSPViolationReportBody;
|
|
16842
|
+
new (): CSPViolationReportBody;
|
|
16843
|
+
};
|
|
16562
16844
|
CSSAnimation: {
|
|
16563
16845
|
prototype: CSSAnimation;
|
|
16564
16846
|
new (): CSSAnimation;
|
|
@@ -16872,6 +17154,18 @@ export declare const PopsRightClickMenu: {
|
|
|
16872
17154
|
prototype: ConvolverNode;
|
|
16873
17155
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
16874
17156
|
};
|
|
17157
|
+
CookieChangeEvent: {
|
|
17158
|
+
prototype: CookieChangeEvent;
|
|
17159
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
17160
|
+
};
|
|
17161
|
+
CookieStore: {
|
|
17162
|
+
prototype: CookieStore;
|
|
17163
|
+
new (): CookieStore;
|
|
17164
|
+
};
|
|
17165
|
+
CookieStoreManager: {
|
|
17166
|
+
prototype: CookieStoreManager;
|
|
17167
|
+
new (): CookieStoreManager;
|
|
17168
|
+
};
|
|
16875
17169
|
CountQueuingStrategy: {
|
|
16876
17170
|
prototype: CountQueuingStrategy;
|
|
16877
17171
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -16940,8 +17234,8 @@ export declare const PopsRightClickMenu: {
|
|
|
16940
17234
|
DOMMatrix: {
|
|
16941
17235
|
prototype: DOMMatrix;
|
|
16942
17236
|
new (init?: string | number[]): DOMMatrix;
|
|
16943
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
16944
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
17237
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
17238
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
16945
17239
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
16946
17240
|
};
|
|
16947
17241
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -16949,8 +17243,8 @@ export declare const PopsRightClickMenu: {
|
|
|
16949
17243
|
DOMMatrixReadOnly: {
|
|
16950
17244
|
prototype: DOMMatrixReadOnly;
|
|
16951
17245
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
16952
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
16953
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
17246
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
17247
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
16954
17248
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
16955
17249
|
};
|
|
16956
17250
|
DOMParser: {
|
|
@@ -17621,10 +17915,14 @@ export declare const PopsRightClickMenu: {
|
|
|
17621
17915
|
prototype: ImageBitmapRenderingContext;
|
|
17622
17916
|
new (): ImageBitmapRenderingContext;
|
|
17623
17917
|
};
|
|
17918
|
+
ImageCapture: {
|
|
17919
|
+
prototype: ImageCapture;
|
|
17920
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
17921
|
+
};
|
|
17624
17922
|
ImageData: {
|
|
17625
17923
|
prototype: ImageData;
|
|
17626
17924
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
17627
|
-
new (data:
|
|
17925
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
17628
17926
|
};
|
|
17629
17927
|
ImageDecoder: {
|
|
17630
17928
|
prototype: ImageDecoder;
|
|
@@ -17877,6 +18175,10 @@ export declare const PopsRightClickMenu: {
|
|
|
17877
18175
|
prototype: Navigator;
|
|
17878
18176
|
new (): Navigator;
|
|
17879
18177
|
};
|
|
18178
|
+
NavigatorLogin: {
|
|
18179
|
+
prototype: NavigatorLogin;
|
|
18180
|
+
new (): NavigatorLogin;
|
|
18181
|
+
};
|
|
17880
18182
|
Node: {
|
|
17881
18183
|
prototype: Node;
|
|
17882
18184
|
new (): Node;
|
|
@@ -18147,7 +18449,7 @@ export declare const PopsRightClickMenu: {
|
|
|
18147
18449
|
};
|
|
18148
18450
|
RTCIceCandidate: {
|
|
18149
18451
|
prototype: RTCIceCandidate;
|
|
18150
|
-
new (candidateInitDict?:
|
|
18452
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
18151
18453
|
};
|
|
18152
18454
|
RTCIceTransport: {
|
|
18153
18455
|
prototype: RTCIceTransport;
|
|
@@ -18220,13 +18522,13 @@ export declare const PopsRightClickMenu: {
|
|
|
18220
18522
|
prototype: ReadableStream;
|
|
18221
18523
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
18222
18524
|
highWaterMark?: number;
|
|
18223
|
-
}): ReadableStream<Uint8Array
|
|
18525
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
18224
18526
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
18225
18527
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
18226
18528
|
};
|
|
18227
18529
|
ReadableStreamBYOBReader: {
|
|
18228
18530
|
prototype: ReadableStreamBYOBReader;
|
|
18229
|
-
new (stream: ReadableStream<Uint8Array
|
|
18531
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
18230
18532
|
};
|
|
18231
18533
|
ReadableStreamBYOBRequest: {
|
|
18232
18534
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -20085,28 +20387,6 @@ export declare const PopsRightClickMenu: {
|
|
|
20085
20387
|
prototype: XSLTProcessor;
|
|
20086
20388
|
new (): XSLTProcessor;
|
|
20087
20389
|
};
|
|
20088
|
-
console: {
|
|
20089
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
20090
|
-
clear: () => void;
|
|
20091
|
-
count: (label?: string) => void;
|
|
20092
|
-
countReset: (label?: string) => void;
|
|
20093
|
-
debug: (...data: any[]) => void;
|
|
20094
|
-
dir: (item?: any, options?: any) => void;
|
|
20095
|
-
dirxml: (...data: any[]) => void;
|
|
20096
|
-
error: (...data: any[]) => void;
|
|
20097
|
-
group: (...data: any[]) => void;
|
|
20098
|
-
groupCollapsed: (...data: any[]) => void;
|
|
20099
|
-
groupEnd: () => void;
|
|
20100
|
-
info: (...data: any[]) => void;
|
|
20101
|
-
log: (...data: any[]) => void;
|
|
20102
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
20103
|
-
time: (label?: string) => void;
|
|
20104
|
-
timeEnd: (label?: string) => void;
|
|
20105
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
20106
|
-
timeStamp: (label?: string) => void;
|
|
20107
|
-
trace: (...data: any[]) => void;
|
|
20108
|
-
warn: (...data: any[]) => void;
|
|
20109
|
-
};
|
|
20110
20390
|
CSS: {
|
|
20111
20391
|
Hz: typeof CSS.Hz;
|
|
20112
20392
|
Q: typeof CSS.Q;
|
|
@@ -20222,6 +20502,28 @@ export declare const PopsRightClickMenu: {
|
|
|
20222
20502
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
20223
20503
|
};
|
|
20224
20504
|
};
|
|
20505
|
+
console: {
|
|
20506
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
20507
|
+
clear: () => void;
|
|
20508
|
+
count: (label?: string) => void;
|
|
20509
|
+
countReset: (label?: string) => void;
|
|
20510
|
+
debug: (...data: any[]) => void;
|
|
20511
|
+
dir: (item?: any, options?: any) => void;
|
|
20512
|
+
dirxml: (...data: any[]) => void;
|
|
20513
|
+
error: (...data: any[]) => void;
|
|
20514
|
+
group: (...data: any[]) => void;
|
|
20515
|
+
groupCollapsed: (...data: any[]) => void;
|
|
20516
|
+
groupEnd: () => void;
|
|
20517
|
+
info: (...data: any[]) => void;
|
|
20518
|
+
log: (...data: any[]) => void;
|
|
20519
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
20520
|
+
time: (label?: string) => void;
|
|
20521
|
+
timeEnd: (label?: string) => void;
|
|
20522
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
20523
|
+
timeStamp: (label?: string) => void;
|
|
20524
|
+
trace: (...data: any[]) => void;
|
|
20525
|
+
warn: (...data: any[]) => void;
|
|
20526
|
+
};
|
|
20225
20527
|
Audio: {
|
|
20226
20528
|
new (src?: string): HTMLAudioElement;
|
|
20227
20529
|
};
|
|
@@ -20315,6 +20617,7 @@ export declare const PopsRightClickMenu: {
|
|
|
20315
20617
|
value: Promise<"ok" | "timed-out">;
|
|
20316
20618
|
};
|
|
20317
20619
|
};
|
|
20620
|
+
pause: (n?: number) => void;
|
|
20318
20621
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
20319
20622
|
};
|
|
20320
20623
|
BigInt: BigIntConstructor;
|
|
@@ -20382,18 +20685,19 @@ export declare const PopsRightClickMenu: {
|
|
|
20382
20685
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
20383
20686
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
20384
20687
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
20385
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
20688
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20386
20689
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
20387
|
-
|
|
20690
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20691
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
20388
20692
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
20389
20693
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20390
20694
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20391
20695
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20392
20696
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20393
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
20697
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20394
20698
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20395
20699
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20396
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
20700
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20397
20701
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20398
20702
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
20399
20703
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -20441,6 +20745,7 @@ export declare const PopsRightClickMenu: {
|
|
|
20441
20745
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20442
20746
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20443
20747
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20748
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20444
20749
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20445
20750
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
20446
20751
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -20459,7 +20764,7 @@ export declare const PopsRightClickMenu: {
|
|
|
20459
20764
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
20460
20765
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20461
20766
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20462
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
20767
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
20463
20768
|
ontouchcancel: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
|
|
20464
20769
|
ontouchend: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
|
|
20465
20770
|
ontouchmove: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
|
|
@@ -20487,9 +20792,9 @@ export declare const PopsRightClickMenu: {
|
|
|
20487
20792
|
onoffline: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20488
20793
|
ononline: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20489
20794
|
onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
|
|
20490
|
-
onpagereveal: ((this: WindowEventHandlers, ev:
|
|
20795
|
+
onpagereveal: ((this: WindowEventHandlers, ev: PageRevealEvent) => any) | null;
|
|
20491
20796
|
onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
|
|
20492
|
-
onpageswap: ((this: WindowEventHandlers, ev:
|
|
20797
|
+
onpageswap: ((this: WindowEventHandlers, ev: PageSwapEvent) => any) | null;
|
|
20493
20798
|
onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;
|
|
20494
20799
|
onrejectionhandled: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
|
|
20495
20800
|
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
|
|
@@ -20541,7 +20846,7 @@ export declare const PopsRightClickMenu: {
|
|
|
20541
20846
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
20542
20847
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
20543
20848
|
};
|
|
20544
|
-
getRandomValues: <T extends ArrayBufferView
|
|
20849
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
20545
20850
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
20546
20851
|
};
|
|
20547
20852
|
readonly indexedDB: {
|