@whitesev/pops 2.2.9 → 2.3.1
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 +485 -180
- package/dist/types/src/components/rightClickMenu/index.d.ts +485 -180
- package/package.json +61 -61
package/dist/types/src/Pops.d.ts
CHANGED
|
@@ -446,6 +446,9 @@ declare class Pops {
|
|
|
446
446
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
447
447
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
448
448
|
};
|
|
449
|
+
readonly login: {
|
|
450
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
451
|
+
};
|
|
449
452
|
readonly maxTouchPoints: number;
|
|
450
453
|
readonly mediaCapabilities: {
|
|
451
454
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -480,6 +483,8 @@ declare class Pops {
|
|
|
480
483
|
} | null;
|
|
481
484
|
playbackState: MediaSessionPlaybackState;
|
|
482
485
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
486
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
487
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
483
488
|
setPositionState: (state?: MediaPositionState) => void;
|
|
484
489
|
};
|
|
485
490
|
readonly permissions: {
|
|
@@ -562,8 +567,8 @@ declare class Pops {
|
|
|
562
567
|
readonly locks: {
|
|
563
568
|
query: () => Promise<LockManagerSnapshot>;
|
|
564
569
|
request: {
|
|
565
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
566
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
570
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
571
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
567
572
|
};
|
|
568
573
|
};
|
|
569
574
|
readonly onLine: boolean;
|
|
@@ -616,6 +621,34 @@ declare class Pops {
|
|
|
616
621
|
};
|
|
617
622
|
};
|
|
618
623
|
readonly closed: boolean;
|
|
624
|
+
readonly cookieStore: {
|
|
625
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
626
|
+
delete: {
|
|
627
|
+
(name: string): Promise<void>;
|
|
628
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
629
|
+
};
|
|
630
|
+
get: {
|
|
631
|
+
(name: string): Promise<CookieListItem | null>;
|
|
632
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
633
|
+
};
|
|
634
|
+
getAll: {
|
|
635
|
+
(name: string): Promise<CookieList>;
|
|
636
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
637
|
+
};
|
|
638
|
+
set: {
|
|
639
|
+
(name: string, value: string): Promise<void>;
|
|
640
|
+
(options: CookieInit): Promise<void>;
|
|
641
|
+
};
|
|
642
|
+
addEventListener: {
|
|
643
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
644
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
645
|
+
};
|
|
646
|
+
removeEventListener: {
|
|
647
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
648
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
649
|
+
};
|
|
650
|
+
dispatchEvent: (event: Event) => boolean;
|
|
651
|
+
};
|
|
619
652
|
readonly customElements: {
|
|
620
653
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
621
654
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -730,6 +763,9 @@ declare class Pops {
|
|
|
730
763
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
731
764
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
732
765
|
};
|
|
766
|
+
readonly login: {
|
|
767
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
768
|
+
};
|
|
733
769
|
readonly maxTouchPoints: number;
|
|
734
770
|
readonly mediaCapabilities: {
|
|
735
771
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -764,6 +800,8 @@ declare class Pops {
|
|
|
764
800
|
} | null;
|
|
765
801
|
playbackState: MediaSessionPlaybackState;
|
|
766
802
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
803
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
804
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
767
805
|
setPositionState: (state?: MediaPositionState) => void;
|
|
768
806
|
};
|
|
769
807
|
readonly permissions: {
|
|
@@ -846,8 +884,8 @@ declare class Pops {
|
|
|
846
884
|
readonly locks: {
|
|
847
885
|
query: () => Promise<LockManagerSnapshot>;
|
|
848
886
|
request: {
|
|
849
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
850
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
887
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
888
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
851
889
|
};
|
|
852
890
|
};
|
|
853
891
|
readonly onLine: boolean;
|
|
@@ -905,6 +943,7 @@ declare class Pops {
|
|
|
905
943
|
onorientationchange: ((this: Window, ev: Event) => any) | null;
|
|
906
944
|
opener: any;
|
|
907
945
|
readonly orientation: number;
|
|
946
|
+
readonly originAgentCluster: boolean;
|
|
908
947
|
readonly outerHeight: number;
|
|
909
948
|
readonly outerWidth: number;
|
|
910
949
|
readonly pageXOffset: number;
|
|
@@ -969,6 +1008,9 @@ declare class Pops {
|
|
|
969
1008
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
970
1009
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
971
1010
|
};
|
|
1011
|
+
readonly login: {
|
|
1012
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
1013
|
+
};
|
|
972
1014
|
readonly maxTouchPoints: number;
|
|
973
1015
|
readonly mediaCapabilities: {
|
|
974
1016
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -1003,6 +1045,8 @@ declare class Pops {
|
|
|
1003
1045
|
} | null;
|
|
1004
1046
|
playbackState: MediaSessionPlaybackState;
|
|
1005
1047
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
1048
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
1049
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
1006
1050
|
setPositionState: (state?: MediaPositionState) => void;
|
|
1007
1051
|
};
|
|
1008
1052
|
readonly permissions: {
|
|
@@ -1085,8 +1129,8 @@ declare class Pops {
|
|
|
1085
1129
|
readonly locks: {
|
|
1086
1130
|
query: () => Promise<LockManagerSnapshot>;
|
|
1087
1131
|
request: {
|
|
1088
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
1089
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
1132
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
1133
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
1090
1134
|
};
|
|
1091
1135
|
};
|
|
1092
1136
|
readonly onLine: boolean;
|
|
@@ -1139,6 +1183,34 @@ declare class Pops {
|
|
|
1139
1183
|
};
|
|
1140
1184
|
};
|
|
1141
1185
|
closed: boolean;
|
|
1186
|
+
cookieStore: {
|
|
1187
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
1188
|
+
delete: {
|
|
1189
|
+
(name: string): Promise<void>;
|
|
1190
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
1191
|
+
};
|
|
1192
|
+
get: {
|
|
1193
|
+
(name: string): Promise<CookieListItem | null>;
|
|
1194
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
1195
|
+
};
|
|
1196
|
+
getAll: {
|
|
1197
|
+
(name: string): Promise<CookieList>;
|
|
1198
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
1199
|
+
};
|
|
1200
|
+
set: {
|
|
1201
|
+
(name: string, value: string): Promise<void>;
|
|
1202
|
+
(options: CookieInit): Promise<void>;
|
|
1203
|
+
};
|
|
1204
|
+
addEventListener: {
|
|
1205
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1206
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1207
|
+
};
|
|
1208
|
+
removeEventListener: {
|
|
1209
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
1210
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1211
|
+
};
|
|
1212
|
+
dispatchEvent: (event: Event) => boolean;
|
|
1213
|
+
};
|
|
1142
1214
|
customElements: {
|
|
1143
1215
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
1144
1216
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -1253,6 +1325,9 @@ declare class Pops {
|
|
|
1253
1325
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
1254
1326
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
1255
1327
|
};
|
|
1328
|
+
readonly login: {
|
|
1329
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
1330
|
+
};
|
|
1256
1331
|
readonly maxTouchPoints: number;
|
|
1257
1332
|
readonly mediaCapabilities: {
|
|
1258
1333
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -1287,6 +1362,8 @@ declare class Pops {
|
|
|
1287
1362
|
} | null;
|
|
1288
1363
|
playbackState: MediaSessionPlaybackState;
|
|
1289
1364
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
1365
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
1366
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
1290
1367
|
setPositionState: (state?: MediaPositionState) => void;
|
|
1291
1368
|
};
|
|
1292
1369
|
readonly permissions: {
|
|
@@ -1369,8 +1446,8 @@ declare class Pops {
|
|
|
1369
1446
|
readonly locks: {
|
|
1370
1447
|
query: () => Promise<LockManagerSnapshot>;
|
|
1371
1448
|
request: {
|
|
1372
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
1373
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
1449
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
1450
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
1374
1451
|
};
|
|
1375
1452
|
};
|
|
1376
1453
|
readonly onLine: boolean;
|
|
@@ -1428,6 +1505,7 @@ declare class Pops {
|
|
|
1428
1505
|
onorientationchange: (((this: Window, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1429
1506
|
opener: any;
|
|
1430
1507
|
orientation: number;
|
|
1508
|
+
originAgentCluster: boolean;
|
|
1431
1509
|
outerHeight: number;
|
|
1432
1510
|
outerWidth: number;
|
|
1433
1511
|
pageXOffset: number;
|
|
@@ -1570,18 +1648,19 @@ declare class Pops {
|
|
|
1570
1648
|
onanimationend: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
1571
1649
|
onanimationiteration: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
1572
1650
|
onanimationstart: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
1573
|
-
onauxclick: (((this: GlobalEventHandlers, ev:
|
|
1651
|
+
onauxclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1574
1652
|
onbeforeinput: (((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: Window, ev: InputEvent) => any)) | null;
|
|
1575
|
-
|
|
1653
|
+
onbeforematch: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1654
|
+
onbeforetoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
1576
1655
|
onblur: (((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: Window, ev: FocusEvent) => any)) | null;
|
|
1577
1656
|
oncancel: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1578
1657
|
oncanplay: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1579
1658
|
oncanplaythrough: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1580
1659
|
onchange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1581
|
-
onclick: (((this: GlobalEventHandlers, ev:
|
|
1660
|
+
onclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1582
1661
|
onclose: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1583
1662
|
oncontextlost: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1584
|
-
oncontextmenu: (((this: GlobalEventHandlers, ev:
|
|
1663
|
+
oncontextmenu: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1585
1664
|
oncontextrestored: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1586
1665
|
oncopy: (((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: Window, ev: ClipboardEvent) => any)) | null;
|
|
1587
1666
|
oncuechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -1629,6 +1708,7 @@ declare class Pops {
|
|
|
1629
1708
|
onpointermove: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1630
1709
|
onpointerout: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1631
1710
|
onpointerover: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1711
|
+
onpointerrawupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1632
1712
|
onpointerup: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
1633
1713
|
onprogress: (((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: Window, ev: ProgressEvent) => any)) | null;
|
|
1634
1714
|
onratechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -1647,7 +1727,7 @@ declare class Pops {
|
|
|
1647
1727
|
onsubmit: (((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: Window, ev: SubmitEvent) => any)) | null;
|
|
1648
1728
|
onsuspend: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1649
1729
|
ontimeupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1650
|
-
ontoggle: (((this: GlobalEventHandlers, ev:
|
|
1730
|
+
ontoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
1651
1731
|
ontouchcancel: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
1652
1732
|
ontouchend: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
1653
1733
|
ontouchmove: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
@@ -1675,9 +1755,9 @@ declare class Pops {
|
|
|
1675
1755
|
onoffline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1676
1756
|
ononline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1677
1757
|
onpagehide: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
1678
|
-
onpagereveal: (((this: WindowEventHandlers, ev:
|
|
1758
|
+
onpagereveal: (((this: WindowEventHandlers, ev: PageRevealEvent) => any) & ((this: Window, ev: PageRevealEvent) => any)) | null;
|
|
1679
1759
|
onpageshow: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
1680
|
-
onpageswap: (((this: WindowEventHandlers, ev:
|
|
1760
|
+
onpageswap: (((this: WindowEventHandlers, ev: PageSwapEvent) => any) & ((this: Window, ev: PageSwapEvent) => any)) | null;
|
|
1681
1761
|
onpopstate: (((this: WindowEventHandlers, ev: PopStateEvent) => any) & ((this: Window, ev: PopStateEvent) => any)) | null;
|
|
1682
1762
|
onrejectionhandled: (((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) & ((this: Window, ev: PromiseRejectionEvent) => any)) | null;
|
|
1683
1763
|
onstorage: (((this: WindowEventHandlers, ev: StorageEvent) => any) & ((this: Window, ev: StorageEvent) => any)) | null;
|
|
@@ -1729,7 +1809,7 @@ declare class Pops {
|
|
|
1729
1809
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
1730
1810
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
1731
1811
|
};
|
|
1732
|
-
getRandomValues: <T extends ArrayBufferView
|
|
1812
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
1733
1813
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
1734
1814
|
};
|
|
1735
1815
|
indexedDB: {
|
|
@@ -2165,6 +2245,10 @@ declare class Pops {
|
|
|
2165
2245
|
prototype: CDATASection;
|
|
2166
2246
|
new (): CDATASection;
|
|
2167
2247
|
};
|
|
2248
|
+
CSPViolationReportBody: {
|
|
2249
|
+
prototype: CSPViolationReportBody;
|
|
2250
|
+
new (): CSPViolationReportBody;
|
|
2251
|
+
};
|
|
2168
2252
|
CSSAnimation: {
|
|
2169
2253
|
prototype: CSSAnimation;
|
|
2170
2254
|
new (): CSSAnimation;
|
|
@@ -2478,6 +2562,18 @@ declare class Pops {
|
|
|
2478
2562
|
prototype: ConvolverNode;
|
|
2479
2563
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
2480
2564
|
};
|
|
2565
|
+
CookieChangeEvent: {
|
|
2566
|
+
prototype: CookieChangeEvent;
|
|
2567
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
2568
|
+
};
|
|
2569
|
+
CookieStore: {
|
|
2570
|
+
prototype: CookieStore;
|
|
2571
|
+
new (): CookieStore;
|
|
2572
|
+
};
|
|
2573
|
+
CookieStoreManager: {
|
|
2574
|
+
prototype: CookieStoreManager;
|
|
2575
|
+
new (): CookieStoreManager;
|
|
2576
|
+
};
|
|
2481
2577
|
CountQueuingStrategy: {
|
|
2482
2578
|
prototype: CountQueuingStrategy;
|
|
2483
2579
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -2546,8 +2642,8 @@ declare class Pops {
|
|
|
2546
2642
|
DOMMatrix: {
|
|
2547
2643
|
prototype: DOMMatrix;
|
|
2548
2644
|
new (init?: string | number[]): DOMMatrix;
|
|
2549
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
2550
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
2645
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
2646
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
2551
2647
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
2552
2648
|
};
|
|
2553
2649
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -2555,8 +2651,8 @@ declare class Pops {
|
|
|
2555
2651
|
DOMMatrixReadOnly: {
|
|
2556
2652
|
prototype: DOMMatrixReadOnly;
|
|
2557
2653
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
2558
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
2559
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
2654
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2655
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2560
2656
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
2561
2657
|
};
|
|
2562
2658
|
DOMParser: {
|
|
@@ -3227,10 +3323,14 @@ declare class Pops {
|
|
|
3227
3323
|
prototype: ImageBitmapRenderingContext;
|
|
3228
3324
|
new (): ImageBitmapRenderingContext;
|
|
3229
3325
|
};
|
|
3326
|
+
ImageCapture: {
|
|
3327
|
+
prototype: ImageCapture;
|
|
3328
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
3329
|
+
};
|
|
3230
3330
|
ImageData: {
|
|
3231
3331
|
prototype: ImageData;
|
|
3232
3332
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
3233
|
-
new (data:
|
|
3333
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
3234
3334
|
};
|
|
3235
3335
|
ImageDecoder: {
|
|
3236
3336
|
prototype: ImageDecoder;
|
|
@@ -3483,6 +3583,10 @@ declare class Pops {
|
|
|
3483
3583
|
prototype: Navigator;
|
|
3484
3584
|
new (): Navigator;
|
|
3485
3585
|
};
|
|
3586
|
+
NavigatorLogin: {
|
|
3587
|
+
prototype: NavigatorLogin;
|
|
3588
|
+
new (): NavigatorLogin;
|
|
3589
|
+
};
|
|
3486
3590
|
Node: {
|
|
3487
3591
|
prototype: Node;
|
|
3488
3592
|
new (): Node;
|
|
@@ -3753,7 +3857,7 @@ declare class Pops {
|
|
|
3753
3857
|
};
|
|
3754
3858
|
RTCIceCandidate: {
|
|
3755
3859
|
prototype: RTCIceCandidate;
|
|
3756
|
-
new (candidateInitDict?:
|
|
3860
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
3757
3861
|
};
|
|
3758
3862
|
RTCIceTransport: {
|
|
3759
3863
|
prototype: RTCIceTransport;
|
|
@@ -3826,13 +3930,13 @@ declare class Pops {
|
|
|
3826
3930
|
prototype: ReadableStream;
|
|
3827
3931
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
3828
3932
|
highWaterMark?: number;
|
|
3829
|
-
}): ReadableStream<Uint8Array
|
|
3933
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
3830
3934
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
3831
3935
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
3832
3936
|
};
|
|
3833
3937
|
ReadableStreamBYOBReader: {
|
|
3834
3938
|
prototype: ReadableStreamBYOBReader;
|
|
3835
|
-
new (stream: ReadableStream<Uint8Array
|
|
3939
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
3836
3940
|
};
|
|
3837
3941
|
ReadableStreamBYOBRequest: {
|
|
3838
3942
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -5691,28 +5795,6 @@ declare class Pops {
|
|
|
5691
5795
|
prototype: XSLTProcessor;
|
|
5692
5796
|
new (): XSLTProcessor;
|
|
5693
5797
|
};
|
|
5694
|
-
console: {
|
|
5695
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
5696
|
-
clear: () => void;
|
|
5697
|
-
count: (label?: string) => void;
|
|
5698
|
-
countReset: (label?: string) => void;
|
|
5699
|
-
debug: (...data: any[]) => void;
|
|
5700
|
-
dir: (item?: any, options?: any) => void;
|
|
5701
|
-
dirxml: (...data: any[]) => void;
|
|
5702
|
-
error: (...data: any[]) => void;
|
|
5703
|
-
group: (...data: any[]) => void;
|
|
5704
|
-
groupCollapsed: (...data: any[]) => void;
|
|
5705
|
-
groupEnd: () => void;
|
|
5706
|
-
info: (...data: any[]) => void;
|
|
5707
|
-
log: (...data: any[]) => void;
|
|
5708
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
5709
|
-
time: (label?: string) => void;
|
|
5710
|
-
timeEnd: (label?: string) => void;
|
|
5711
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
5712
|
-
timeStamp: (label?: string) => void;
|
|
5713
|
-
trace: (...data: any[]) => void;
|
|
5714
|
-
warn: (...data: any[]) => void;
|
|
5715
|
-
};
|
|
5716
5798
|
CSS: {
|
|
5717
5799
|
Hz: typeof CSS.Hz;
|
|
5718
5800
|
Q: typeof CSS.Q;
|
|
@@ -5828,6 +5910,28 @@ declare class Pops {
|
|
|
5828
5910
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
5829
5911
|
};
|
|
5830
5912
|
};
|
|
5913
|
+
console: {
|
|
5914
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
5915
|
+
clear: () => void;
|
|
5916
|
+
count: (label?: string) => void;
|
|
5917
|
+
countReset: (label?: string) => void;
|
|
5918
|
+
debug: (...data: any[]) => void;
|
|
5919
|
+
dir: (item?: any, options?: any) => void;
|
|
5920
|
+
dirxml: (...data: any[]) => void;
|
|
5921
|
+
error: (...data: any[]) => void;
|
|
5922
|
+
group: (...data: any[]) => void;
|
|
5923
|
+
groupCollapsed: (...data: any[]) => void;
|
|
5924
|
+
groupEnd: () => void;
|
|
5925
|
+
info: (...data: any[]) => void;
|
|
5926
|
+
log: (...data: any[]) => void;
|
|
5927
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
5928
|
+
time: (label?: string) => void;
|
|
5929
|
+
timeEnd: (label?: string) => void;
|
|
5930
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
5931
|
+
timeStamp: (label?: string) => void;
|
|
5932
|
+
trace: (...data: any[]) => void;
|
|
5933
|
+
warn: (...data: any[]) => void;
|
|
5934
|
+
};
|
|
5831
5935
|
Audio: {
|
|
5832
5936
|
new (src?: string): HTMLAudioElement;
|
|
5833
5937
|
};
|
|
@@ -5859,6 +5963,9 @@ declare class Pops {
|
|
|
5859
5963
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
5860
5964
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
5861
5965
|
};
|
|
5966
|
+
readonly login: {
|
|
5967
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
5968
|
+
};
|
|
5862
5969
|
readonly maxTouchPoints: number;
|
|
5863
5970
|
readonly mediaCapabilities: {
|
|
5864
5971
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -5893,6 +6000,8 @@ declare class Pops {
|
|
|
5893
6000
|
} | null;
|
|
5894
6001
|
playbackState: MediaSessionPlaybackState;
|
|
5895
6002
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
6003
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
6004
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
5896
6005
|
setPositionState: (state?: MediaPositionState) => void;
|
|
5897
6006
|
};
|
|
5898
6007
|
readonly permissions: {
|
|
@@ -5975,8 +6084,8 @@ declare class Pops {
|
|
|
5975
6084
|
readonly locks: {
|
|
5976
6085
|
query: () => Promise<LockManagerSnapshot>;
|
|
5977
6086
|
request: {
|
|
5978
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
5979
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
6087
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
6088
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
5980
6089
|
};
|
|
5981
6090
|
};
|
|
5982
6091
|
readonly onLine: boolean;
|
|
@@ -6029,6 +6138,34 @@ declare class Pops {
|
|
|
6029
6138
|
};
|
|
6030
6139
|
};
|
|
6031
6140
|
closed: boolean;
|
|
6141
|
+
cookieStore: {
|
|
6142
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
6143
|
+
delete: {
|
|
6144
|
+
(name: string): Promise<void>;
|
|
6145
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
6146
|
+
};
|
|
6147
|
+
get: {
|
|
6148
|
+
(name: string): Promise<CookieListItem | null>;
|
|
6149
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
6150
|
+
};
|
|
6151
|
+
getAll: {
|
|
6152
|
+
(name: string): Promise<CookieList>;
|
|
6153
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
6154
|
+
};
|
|
6155
|
+
set: {
|
|
6156
|
+
(name: string, value: string): Promise<void>;
|
|
6157
|
+
(options: CookieInit): Promise<void>;
|
|
6158
|
+
};
|
|
6159
|
+
addEventListener: {
|
|
6160
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
6161
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
6162
|
+
};
|
|
6163
|
+
removeEventListener: {
|
|
6164
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
6165
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
6166
|
+
};
|
|
6167
|
+
dispatchEvent: (event: Event) => boolean;
|
|
6168
|
+
};
|
|
6032
6169
|
customElements: {
|
|
6033
6170
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
6034
6171
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -6142,6 +6279,9 @@ declare class Pops {
|
|
|
6142
6279
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
6143
6280
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
6144
6281
|
};
|
|
6282
|
+
readonly login: {
|
|
6283
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
6284
|
+
};
|
|
6145
6285
|
readonly maxTouchPoints: number;
|
|
6146
6286
|
readonly mediaCapabilities: {
|
|
6147
6287
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -6176,6 +6316,8 @@ declare class Pops {
|
|
|
6176
6316
|
} | null;
|
|
6177
6317
|
playbackState: MediaSessionPlaybackState;
|
|
6178
6318
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
6319
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
6320
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
6179
6321
|
setPositionState: (state?: MediaPositionState) => void;
|
|
6180
6322
|
};
|
|
6181
6323
|
readonly permissions: {
|
|
@@ -6258,8 +6400,8 @@ declare class Pops {
|
|
|
6258
6400
|
readonly locks: {
|
|
6259
6401
|
query: () => Promise<LockManagerSnapshot>;
|
|
6260
6402
|
request: {
|
|
6261
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
6262
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
6403
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
6404
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
6263
6405
|
};
|
|
6264
6406
|
};
|
|
6265
6407
|
readonly onLine: boolean;
|
|
@@ -6317,6 +6459,7 @@ declare class Pops {
|
|
|
6317
6459
|
onorientationchange: ((this: Window, ev: Event) => any) | null;
|
|
6318
6460
|
opener: any;
|
|
6319
6461
|
orientation: number;
|
|
6462
|
+
originAgentCluster: boolean;
|
|
6320
6463
|
outerHeight: number;
|
|
6321
6464
|
outerWidth: number;
|
|
6322
6465
|
pageXOffset: number;
|
|
@@ -6412,18 +6555,19 @@ declare class Pops {
|
|
|
6412
6555
|
onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
6413
6556
|
onanimationiteration: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
6414
6557
|
onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
6415
|
-
onauxclick: ((this: Window, ev:
|
|
6558
|
+
onauxclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6416
6559
|
onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
|
|
6417
|
-
|
|
6560
|
+
onbeforematch: ((this: Window, ev: Event) => any) | null;
|
|
6561
|
+
onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
6418
6562
|
onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
|
6419
6563
|
oncancel: ((this: Window, ev: Event) => any) | null;
|
|
6420
6564
|
oncanplay: ((this: Window, ev: Event) => any) | null;
|
|
6421
6565
|
oncanplaythrough: ((this: Window, ev: Event) => any) | null;
|
|
6422
6566
|
onchange: ((this: Window, ev: Event) => any) | null;
|
|
6423
|
-
onclick: ((this: Window, ev:
|
|
6567
|
+
onclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6424
6568
|
onclose: ((this: Window, ev: Event) => any) | null;
|
|
6425
6569
|
oncontextlost: ((this: Window, ev: Event) => any) | null;
|
|
6426
|
-
oncontextmenu: ((this: Window, ev:
|
|
6570
|
+
oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6427
6571
|
oncontextrestored: ((this: Window, ev: Event) => any) | null;
|
|
6428
6572
|
oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
6429
6573
|
oncuechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -6471,6 +6615,7 @@ declare class Pops {
|
|
|
6471
6615
|
onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6472
6616
|
onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6473
6617
|
onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6618
|
+
onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
|
|
6474
6619
|
onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
|
|
6475
6620
|
onprogress: ((this: Window, ev: ProgressEvent) => any) | null;
|
|
6476
6621
|
onratechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -6489,7 +6634,7 @@ declare class Pops {
|
|
|
6489
6634
|
onsubmit: ((this: Window, ev: SubmitEvent) => any) | null;
|
|
6490
6635
|
onsuspend: ((this: Window, ev: Event) => any) | null;
|
|
6491
6636
|
ontimeupdate: ((this: Window, ev: Event) => any) | null;
|
|
6492
|
-
ontoggle: ((this: Window, ev:
|
|
6637
|
+
ontoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
6493
6638
|
ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
6494
6639
|
ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
6495
6640
|
ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -6517,9 +6662,9 @@ declare class Pops {
|
|
|
6517
6662
|
onoffline: ((this: Window, ev: Event) => any) | null;
|
|
6518
6663
|
ononline: ((this: Window, ev: Event) => any) | null;
|
|
6519
6664
|
onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
6520
|
-
onpagereveal: ((this: Window, ev:
|
|
6665
|
+
onpagereveal: ((this: Window, ev: PageRevealEvent) => any) | null;
|
|
6521
6666
|
onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
6522
|
-
onpageswap: ((this: Window, ev:
|
|
6667
|
+
onpageswap: ((this: Window, ev: PageSwapEvent) => any) | null;
|
|
6523
6668
|
onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
|
|
6524
6669
|
onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
6525
6670
|
onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
@@ -6571,7 +6716,7 @@ declare class Pops {
|
|
|
6571
6716
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
6572
6717
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
6573
6718
|
};
|
|
6574
|
-
getRandomValues: <T extends ArrayBufferView
|
|
6719
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
6575
6720
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
6576
6721
|
};
|
|
6577
6722
|
indexedDB: {
|
|
@@ -6735,6 +6880,7 @@ declare class Pops {
|
|
|
6735
6880
|
value: Promise<"ok" | "timed-out">;
|
|
6736
6881
|
};
|
|
6737
6882
|
};
|
|
6883
|
+
pause: (n?: number) => void;
|
|
6738
6884
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
6739
6885
|
};
|
|
6740
6886
|
BigInt: BigIntConstructor;
|
|
@@ -7050,6 +7196,10 @@ declare class Pops {
|
|
|
7050
7196
|
prototype: CDATASection;
|
|
7051
7197
|
new (): CDATASection;
|
|
7052
7198
|
};
|
|
7199
|
+
CSPViolationReportBody: {
|
|
7200
|
+
prototype: CSPViolationReportBody;
|
|
7201
|
+
new (): CSPViolationReportBody;
|
|
7202
|
+
};
|
|
7053
7203
|
CSSAnimation: {
|
|
7054
7204
|
prototype: CSSAnimation;
|
|
7055
7205
|
new (): CSSAnimation;
|
|
@@ -7363,6 +7513,18 @@ declare class Pops {
|
|
|
7363
7513
|
prototype: ConvolverNode;
|
|
7364
7514
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
7365
7515
|
};
|
|
7516
|
+
CookieChangeEvent: {
|
|
7517
|
+
prototype: CookieChangeEvent;
|
|
7518
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
7519
|
+
};
|
|
7520
|
+
CookieStore: {
|
|
7521
|
+
prototype: CookieStore;
|
|
7522
|
+
new (): CookieStore;
|
|
7523
|
+
};
|
|
7524
|
+
CookieStoreManager: {
|
|
7525
|
+
prototype: CookieStoreManager;
|
|
7526
|
+
new (): CookieStoreManager;
|
|
7527
|
+
};
|
|
7366
7528
|
CountQueuingStrategy: {
|
|
7367
7529
|
prototype: CountQueuingStrategy;
|
|
7368
7530
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -7431,8 +7593,8 @@ declare class Pops {
|
|
|
7431
7593
|
DOMMatrix: {
|
|
7432
7594
|
prototype: DOMMatrix;
|
|
7433
7595
|
new (init?: string | number[]): DOMMatrix;
|
|
7434
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
7435
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
7596
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
7597
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
7436
7598
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
7437
7599
|
};
|
|
7438
7600
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -7440,8 +7602,8 @@ declare class Pops {
|
|
|
7440
7602
|
DOMMatrixReadOnly: {
|
|
7441
7603
|
prototype: DOMMatrixReadOnly;
|
|
7442
7604
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
7443
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
7444
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
7605
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
7606
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
7445
7607
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
7446
7608
|
};
|
|
7447
7609
|
DOMParser: {
|
|
@@ -8112,10 +8274,14 @@ declare class Pops {
|
|
|
8112
8274
|
prototype: ImageBitmapRenderingContext;
|
|
8113
8275
|
new (): ImageBitmapRenderingContext;
|
|
8114
8276
|
};
|
|
8277
|
+
ImageCapture: {
|
|
8278
|
+
prototype: ImageCapture;
|
|
8279
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
8280
|
+
};
|
|
8115
8281
|
ImageData: {
|
|
8116
8282
|
prototype: ImageData;
|
|
8117
8283
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
8118
|
-
new (data:
|
|
8284
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
8119
8285
|
};
|
|
8120
8286
|
ImageDecoder: {
|
|
8121
8287
|
prototype: ImageDecoder;
|
|
@@ -8368,6 +8534,10 @@ declare class Pops {
|
|
|
8368
8534
|
prototype: Navigator;
|
|
8369
8535
|
new (): Navigator;
|
|
8370
8536
|
};
|
|
8537
|
+
NavigatorLogin: {
|
|
8538
|
+
prototype: NavigatorLogin;
|
|
8539
|
+
new (): NavigatorLogin;
|
|
8540
|
+
};
|
|
8371
8541
|
Node: {
|
|
8372
8542
|
prototype: Node;
|
|
8373
8543
|
new (): Node;
|
|
@@ -8638,7 +8808,7 @@ declare class Pops {
|
|
|
8638
8808
|
};
|
|
8639
8809
|
RTCIceCandidate: {
|
|
8640
8810
|
prototype: RTCIceCandidate;
|
|
8641
|
-
new (candidateInitDict?:
|
|
8811
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
8642
8812
|
};
|
|
8643
8813
|
RTCIceTransport: {
|
|
8644
8814
|
prototype: RTCIceTransport;
|
|
@@ -8711,13 +8881,13 @@ declare class Pops {
|
|
|
8711
8881
|
prototype: ReadableStream;
|
|
8712
8882
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
8713
8883
|
highWaterMark?: number;
|
|
8714
|
-
}): ReadableStream<Uint8Array
|
|
8884
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
8715
8885
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
8716
8886
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
8717
8887
|
};
|
|
8718
8888
|
ReadableStreamBYOBReader: {
|
|
8719
8889
|
prototype: ReadableStreamBYOBReader;
|
|
8720
|
-
new (stream: ReadableStream<Uint8Array
|
|
8890
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
8721
8891
|
};
|
|
8722
8892
|
ReadableStreamBYOBRequest: {
|
|
8723
8893
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -10576,28 +10746,6 @@ declare class Pops {
|
|
|
10576
10746
|
prototype: XSLTProcessor;
|
|
10577
10747
|
new (): XSLTProcessor;
|
|
10578
10748
|
};
|
|
10579
|
-
console: {
|
|
10580
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
10581
|
-
clear: () => void;
|
|
10582
|
-
count: (label?: string) => void;
|
|
10583
|
-
countReset: (label?: string) => void;
|
|
10584
|
-
debug: (...data: any[]) => void;
|
|
10585
|
-
dir: (item?: any, options?: any) => void;
|
|
10586
|
-
dirxml: (...data: any[]) => void;
|
|
10587
|
-
error: (...data: any[]) => void;
|
|
10588
|
-
group: (...data: any[]) => void;
|
|
10589
|
-
groupCollapsed: (...data: any[]) => void;
|
|
10590
|
-
groupEnd: () => void;
|
|
10591
|
-
info: (...data: any[]) => void;
|
|
10592
|
-
log: (...data: any[]) => void;
|
|
10593
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
10594
|
-
time: (label?: string) => void;
|
|
10595
|
-
timeEnd: (label?: string) => void;
|
|
10596
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
10597
|
-
timeStamp: (label?: string) => void;
|
|
10598
|
-
trace: (...data: any[]) => void;
|
|
10599
|
-
warn: (...data: any[]) => void;
|
|
10600
|
-
};
|
|
10601
10749
|
CSS: {
|
|
10602
10750
|
Hz: typeof CSS.Hz;
|
|
10603
10751
|
Q: typeof CSS.Q;
|
|
@@ -10713,6 +10861,28 @@ declare class Pops {
|
|
|
10713
10861
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
10714
10862
|
};
|
|
10715
10863
|
};
|
|
10864
|
+
console: {
|
|
10865
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
10866
|
+
clear: () => void;
|
|
10867
|
+
count: (label?: string) => void;
|
|
10868
|
+
countReset: (label?: string) => void;
|
|
10869
|
+
debug: (...data: any[]) => void;
|
|
10870
|
+
dir: (item?: any, options?: any) => void;
|
|
10871
|
+
dirxml: (...data: any[]) => void;
|
|
10872
|
+
error: (...data: any[]) => void;
|
|
10873
|
+
group: (...data: any[]) => void;
|
|
10874
|
+
groupCollapsed: (...data: any[]) => void;
|
|
10875
|
+
groupEnd: () => void;
|
|
10876
|
+
info: (...data: any[]) => void;
|
|
10877
|
+
log: (...data: any[]) => void;
|
|
10878
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
10879
|
+
time: (label?: string) => void;
|
|
10880
|
+
timeEnd: (label?: string) => void;
|
|
10881
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
10882
|
+
timeStamp: (label?: string) => void;
|
|
10883
|
+
trace: (...data: any[]) => void;
|
|
10884
|
+
warn: (...data: any[]) => void;
|
|
10885
|
+
};
|
|
10716
10886
|
Audio: {
|
|
10717
10887
|
new (src?: string): HTMLAudioElement;
|
|
10718
10888
|
};
|
|
@@ -10806,6 +10976,7 @@ declare class Pops {
|
|
|
10806
10976
|
value: Promise<"ok" | "timed-out">;
|
|
10807
10977
|
};
|
|
10808
10978
|
};
|
|
10979
|
+
pause: (n?: number) => void;
|
|
10809
10980
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
10810
10981
|
};
|
|
10811
10982
|
BigInt: BigIntConstructor;
|
|
@@ -10893,6 +11064,9 @@ declare class Pops {
|
|
|
10893
11064
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
10894
11065
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
10895
11066
|
};
|
|
11067
|
+
readonly login: {
|
|
11068
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
11069
|
+
};
|
|
10896
11070
|
readonly maxTouchPoints: number;
|
|
10897
11071
|
readonly mediaCapabilities: {
|
|
10898
11072
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -10927,6 +11101,8 @@ declare class Pops {
|
|
|
10927
11101
|
} | null;
|
|
10928
11102
|
playbackState: MediaSessionPlaybackState;
|
|
10929
11103
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
11104
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
11105
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
10930
11106
|
setPositionState: (state?: MediaPositionState) => void;
|
|
10931
11107
|
};
|
|
10932
11108
|
readonly permissions: {
|
|
@@ -11009,8 +11185,8 @@ declare class Pops {
|
|
|
11009
11185
|
readonly locks: {
|
|
11010
11186
|
query: () => Promise<LockManagerSnapshot>;
|
|
11011
11187
|
request: {
|
|
11012
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
11013
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
11188
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
11189
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
11014
11190
|
};
|
|
11015
11191
|
};
|
|
11016
11192
|
readonly onLine: boolean;
|
|
@@ -11063,6 +11239,34 @@ declare class Pops {
|
|
|
11063
11239
|
};
|
|
11064
11240
|
};
|
|
11065
11241
|
closed: boolean;
|
|
11242
|
+
cookieStore: {
|
|
11243
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
11244
|
+
delete: {
|
|
11245
|
+
(name: string): Promise<void>;
|
|
11246
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
11247
|
+
};
|
|
11248
|
+
get: {
|
|
11249
|
+
(name: string): Promise<CookieListItem | null>;
|
|
11250
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
11251
|
+
};
|
|
11252
|
+
getAll: {
|
|
11253
|
+
(name: string): Promise<CookieList>;
|
|
11254
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
11255
|
+
};
|
|
11256
|
+
set: {
|
|
11257
|
+
(name: string, value: string): Promise<void>;
|
|
11258
|
+
(options: CookieInit): Promise<void>;
|
|
11259
|
+
};
|
|
11260
|
+
addEventListener: {
|
|
11261
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
11262
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
11263
|
+
};
|
|
11264
|
+
removeEventListener: {
|
|
11265
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
11266
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
11267
|
+
};
|
|
11268
|
+
dispatchEvent: (event: Event) => boolean;
|
|
11269
|
+
};
|
|
11066
11270
|
customElements: {
|
|
11067
11271
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
11068
11272
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -11177,6 +11381,9 @@ declare class Pops {
|
|
|
11177
11381
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
11178
11382
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
11179
11383
|
};
|
|
11384
|
+
readonly login: {
|
|
11385
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
11386
|
+
};
|
|
11180
11387
|
readonly maxTouchPoints: number;
|
|
11181
11388
|
readonly mediaCapabilities: {
|
|
11182
11389
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -11211,6 +11418,8 @@ declare class Pops {
|
|
|
11211
11418
|
} | null;
|
|
11212
11419
|
playbackState: MediaSessionPlaybackState;
|
|
11213
11420
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
11421
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
11422
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
11214
11423
|
setPositionState: (state?: MediaPositionState) => void;
|
|
11215
11424
|
};
|
|
11216
11425
|
readonly permissions: {
|
|
@@ -11293,8 +11502,8 @@ declare class Pops {
|
|
|
11293
11502
|
readonly locks: {
|
|
11294
11503
|
query: () => Promise<LockManagerSnapshot>;
|
|
11295
11504
|
request: {
|
|
11296
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
11297
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
11505
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
11506
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
11298
11507
|
};
|
|
11299
11508
|
};
|
|
11300
11509
|
readonly onLine: boolean;
|
|
@@ -11352,6 +11561,7 @@ declare class Pops {
|
|
|
11352
11561
|
onorientationchange: (((this: Window, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11353
11562
|
opener: any;
|
|
11354
11563
|
orientation: number;
|
|
11564
|
+
originAgentCluster: boolean;
|
|
11355
11565
|
outerHeight: number;
|
|
11356
11566
|
outerWidth: number;
|
|
11357
11567
|
pageXOffset: number;
|
|
@@ -11494,18 +11704,19 @@ declare class Pops {
|
|
|
11494
11704
|
onanimationend: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
11495
11705
|
onanimationiteration: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
11496
11706
|
onanimationstart: (((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: Window, ev: AnimationEvent) => any)) | null;
|
|
11497
|
-
onauxclick: (((this: GlobalEventHandlers, ev:
|
|
11707
|
+
onauxclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11498
11708
|
onbeforeinput: (((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: Window, ev: InputEvent) => any)) | null;
|
|
11499
|
-
|
|
11709
|
+
onbeforematch: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11710
|
+
onbeforetoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
11500
11711
|
onblur: (((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: Window, ev: FocusEvent) => any)) | null;
|
|
11501
11712
|
oncancel: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11502
11713
|
oncanplay: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11503
11714
|
oncanplaythrough: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11504
11715
|
onchange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11505
|
-
onclick: (((this: GlobalEventHandlers, ev:
|
|
11716
|
+
onclick: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11506
11717
|
onclose: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11507
11718
|
oncontextlost: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11508
|
-
oncontextmenu: (((this: GlobalEventHandlers, ev:
|
|
11719
|
+
oncontextmenu: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11509
11720
|
oncontextrestored: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11510
11721
|
oncopy: (((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: Window, ev: ClipboardEvent) => any)) | null;
|
|
11511
11722
|
oncuechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -11553,6 +11764,7 @@ declare class Pops {
|
|
|
11553
11764
|
onpointermove: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11554
11765
|
onpointerout: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11555
11766
|
onpointerover: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11767
|
+
onpointerrawupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11556
11768
|
onpointerup: (((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: Window, ev: PointerEvent) => any)) | null;
|
|
11557
11769
|
onprogress: (((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: Window, ev: ProgressEvent) => any)) | null;
|
|
11558
11770
|
onratechange: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
@@ -11571,7 +11783,7 @@ declare class Pops {
|
|
|
11571
11783
|
onsubmit: (((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: Window, ev: SubmitEvent) => any)) | null;
|
|
11572
11784
|
onsuspend: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11573
11785
|
ontimeupdate: (((this: GlobalEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11574
|
-
ontoggle: (((this: GlobalEventHandlers, ev:
|
|
11786
|
+
ontoggle: (((this: GlobalEventHandlers, ev: ToggleEvent) => any) & ((this: Window, ev: ToggleEvent) => any)) | null;
|
|
11575
11787
|
ontouchcancel: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
11576
11788
|
ontouchend: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
11577
11789
|
ontouchmove: (((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: Window, ev: TouchEvent) => any)) | null;
|
|
@@ -11599,9 +11811,9 @@ declare class Pops {
|
|
|
11599
11811
|
onoffline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11600
11812
|
ononline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11601
11813
|
onpagehide: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
11602
|
-
onpagereveal: (((this: WindowEventHandlers, ev:
|
|
11814
|
+
onpagereveal: (((this: WindowEventHandlers, ev: PageRevealEvent) => any) & ((this: Window, ev: PageRevealEvent) => any)) | null;
|
|
11603
11815
|
onpageshow: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
11604
|
-
onpageswap: (((this: WindowEventHandlers, ev:
|
|
11816
|
+
onpageswap: (((this: WindowEventHandlers, ev: PageSwapEvent) => any) & ((this: Window, ev: PageSwapEvent) => any)) | null;
|
|
11605
11817
|
onpopstate: (((this: WindowEventHandlers, ev: PopStateEvent) => any) & ((this: Window, ev: PopStateEvent) => any)) | null;
|
|
11606
11818
|
onrejectionhandled: (((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) & ((this: Window, ev: PromiseRejectionEvent) => any)) | null;
|
|
11607
11819
|
onstorage: (((this: WindowEventHandlers, ev: StorageEvent) => any) & ((this: Window, ev: StorageEvent) => any)) | null;
|
|
@@ -11653,7 +11865,7 @@ declare class Pops {
|
|
|
11653
11865
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
11654
11866
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
11655
11867
|
};
|
|
11656
|
-
getRandomValues: <T extends ArrayBufferView
|
|
11868
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
11657
11869
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
11658
11870
|
};
|
|
11659
11871
|
indexedDB: {
|
|
@@ -12089,6 +12301,10 @@ declare class Pops {
|
|
|
12089
12301
|
prototype: CDATASection;
|
|
12090
12302
|
new (): CDATASection;
|
|
12091
12303
|
};
|
|
12304
|
+
CSPViolationReportBody: {
|
|
12305
|
+
prototype: CSPViolationReportBody;
|
|
12306
|
+
new (): CSPViolationReportBody;
|
|
12307
|
+
};
|
|
12092
12308
|
CSSAnimation: {
|
|
12093
12309
|
prototype: CSSAnimation;
|
|
12094
12310
|
new (): CSSAnimation;
|
|
@@ -12402,6 +12618,18 @@ declare class Pops {
|
|
|
12402
12618
|
prototype: ConvolverNode;
|
|
12403
12619
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
12404
12620
|
};
|
|
12621
|
+
CookieChangeEvent: {
|
|
12622
|
+
prototype: CookieChangeEvent;
|
|
12623
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
12624
|
+
};
|
|
12625
|
+
CookieStore: {
|
|
12626
|
+
prototype: CookieStore;
|
|
12627
|
+
new (): CookieStore;
|
|
12628
|
+
};
|
|
12629
|
+
CookieStoreManager: {
|
|
12630
|
+
prototype: CookieStoreManager;
|
|
12631
|
+
new (): CookieStoreManager;
|
|
12632
|
+
};
|
|
12405
12633
|
CountQueuingStrategy: {
|
|
12406
12634
|
prototype: CountQueuingStrategy;
|
|
12407
12635
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -12470,8 +12698,8 @@ declare class Pops {
|
|
|
12470
12698
|
DOMMatrix: {
|
|
12471
12699
|
prototype: DOMMatrix;
|
|
12472
12700
|
new (init?: string | number[]): DOMMatrix;
|
|
12473
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
12474
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
12701
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
12702
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
12475
12703
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
12476
12704
|
};
|
|
12477
12705
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -12479,8 +12707,8 @@ declare class Pops {
|
|
|
12479
12707
|
DOMMatrixReadOnly: {
|
|
12480
12708
|
prototype: DOMMatrixReadOnly;
|
|
12481
12709
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
12482
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
12483
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
12710
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
12711
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
12484
12712
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
12485
12713
|
};
|
|
12486
12714
|
DOMParser: {
|
|
@@ -13151,10 +13379,14 @@ declare class Pops {
|
|
|
13151
13379
|
prototype: ImageBitmapRenderingContext;
|
|
13152
13380
|
new (): ImageBitmapRenderingContext;
|
|
13153
13381
|
};
|
|
13382
|
+
ImageCapture: {
|
|
13383
|
+
prototype: ImageCapture;
|
|
13384
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
13385
|
+
};
|
|
13154
13386
|
ImageData: {
|
|
13155
13387
|
prototype: ImageData;
|
|
13156
13388
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
13157
|
-
new (data:
|
|
13389
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
13158
13390
|
};
|
|
13159
13391
|
ImageDecoder: {
|
|
13160
13392
|
prototype: ImageDecoder;
|
|
@@ -13407,6 +13639,10 @@ declare class Pops {
|
|
|
13407
13639
|
prototype: Navigator;
|
|
13408
13640
|
new (): Navigator;
|
|
13409
13641
|
};
|
|
13642
|
+
NavigatorLogin: {
|
|
13643
|
+
prototype: NavigatorLogin;
|
|
13644
|
+
new (): NavigatorLogin;
|
|
13645
|
+
};
|
|
13410
13646
|
Node: {
|
|
13411
13647
|
prototype: Node;
|
|
13412
13648
|
new (): Node;
|
|
@@ -13677,7 +13913,7 @@ declare class Pops {
|
|
|
13677
13913
|
};
|
|
13678
13914
|
RTCIceCandidate: {
|
|
13679
13915
|
prototype: RTCIceCandidate;
|
|
13680
|
-
new (candidateInitDict?:
|
|
13916
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
13681
13917
|
};
|
|
13682
13918
|
RTCIceTransport: {
|
|
13683
13919
|
prototype: RTCIceTransport;
|
|
@@ -13750,13 +13986,13 @@ declare class Pops {
|
|
|
13750
13986
|
prototype: ReadableStream;
|
|
13751
13987
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
13752
13988
|
highWaterMark?: number;
|
|
13753
|
-
}): ReadableStream<Uint8Array
|
|
13989
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
13754
13990
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
13755
13991
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
13756
13992
|
};
|
|
13757
13993
|
ReadableStreamBYOBReader: {
|
|
13758
13994
|
prototype: ReadableStreamBYOBReader;
|
|
13759
|
-
new (stream: ReadableStream<Uint8Array
|
|
13995
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
13760
13996
|
};
|
|
13761
13997
|
ReadableStreamBYOBRequest: {
|
|
13762
13998
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -15615,28 +15851,6 @@ declare class Pops {
|
|
|
15615
15851
|
prototype: XSLTProcessor;
|
|
15616
15852
|
new (): XSLTProcessor;
|
|
15617
15853
|
};
|
|
15618
|
-
console: {
|
|
15619
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
15620
|
-
clear: () => void;
|
|
15621
|
-
count: (label?: string) => void;
|
|
15622
|
-
countReset: (label?: string) => void;
|
|
15623
|
-
debug: (...data: any[]) => void;
|
|
15624
|
-
dir: (item?: any, options?: any) => void;
|
|
15625
|
-
dirxml: (...data: any[]) => void;
|
|
15626
|
-
error: (...data: any[]) => void;
|
|
15627
|
-
group: (...data: any[]) => void;
|
|
15628
|
-
groupCollapsed: (...data: any[]) => void;
|
|
15629
|
-
groupEnd: () => void;
|
|
15630
|
-
info: (...data: any[]) => void;
|
|
15631
|
-
log: (...data: any[]) => void;
|
|
15632
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
15633
|
-
time: (label?: string) => void;
|
|
15634
|
-
timeEnd: (label?: string) => void;
|
|
15635
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
15636
|
-
timeStamp: (label?: string) => void;
|
|
15637
|
-
trace: (...data: any[]) => void;
|
|
15638
|
-
warn: (...data: any[]) => void;
|
|
15639
|
-
};
|
|
15640
15854
|
CSS: {
|
|
15641
15855
|
Hz: typeof CSS.Hz;
|
|
15642
15856
|
Q: typeof CSS.Q;
|
|
@@ -15752,6 +15966,28 @@ declare class Pops {
|
|
|
15752
15966
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
15753
15967
|
};
|
|
15754
15968
|
};
|
|
15969
|
+
console: {
|
|
15970
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
15971
|
+
clear: () => void;
|
|
15972
|
+
count: (label?: string) => void;
|
|
15973
|
+
countReset: (label?: string) => void;
|
|
15974
|
+
debug: (...data: any[]) => void;
|
|
15975
|
+
dir: (item?: any, options?: any) => void;
|
|
15976
|
+
dirxml: (...data: any[]) => void;
|
|
15977
|
+
error: (...data: any[]) => void;
|
|
15978
|
+
group: (...data: any[]) => void;
|
|
15979
|
+
groupCollapsed: (...data: any[]) => void;
|
|
15980
|
+
groupEnd: () => void;
|
|
15981
|
+
info: (...data: any[]) => void;
|
|
15982
|
+
log: (...data: any[]) => void;
|
|
15983
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
15984
|
+
time: (label?: string) => void;
|
|
15985
|
+
timeEnd: (label?: string) => void;
|
|
15986
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
15987
|
+
timeStamp: (label?: string) => void;
|
|
15988
|
+
trace: (...data: any[]) => void;
|
|
15989
|
+
warn: (...data: any[]) => void;
|
|
15990
|
+
};
|
|
15755
15991
|
Audio: {
|
|
15756
15992
|
new (src?: string): HTMLAudioElement;
|
|
15757
15993
|
};
|
|
@@ -15783,6 +16019,9 @@ declare class Pops {
|
|
|
15783
16019
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
15784
16020
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
15785
16021
|
};
|
|
16022
|
+
readonly login: {
|
|
16023
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
16024
|
+
};
|
|
15786
16025
|
readonly maxTouchPoints: number;
|
|
15787
16026
|
readonly mediaCapabilities: {
|
|
15788
16027
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -15817,6 +16056,8 @@ declare class Pops {
|
|
|
15817
16056
|
} | null;
|
|
15818
16057
|
playbackState: MediaSessionPlaybackState;
|
|
15819
16058
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
16059
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
16060
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
15820
16061
|
setPositionState: (state?: MediaPositionState) => void;
|
|
15821
16062
|
};
|
|
15822
16063
|
readonly permissions: {
|
|
@@ -15899,8 +16140,8 @@ declare class Pops {
|
|
|
15899
16140
|
readonly locks: {
|
|
15900
16141
|
query: () => Promise<LockManagerSnapshot>;
|
|
15901
16142
|
request: {
|
|
15902
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
15903
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
16143
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
16144
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
15904
16145
|
};
|
|
15905
16146
|
};
|
|
15906
16147
|
readonly onLine: boolean;
|
|
@@ -15953,6 +16194,34 @@ declare class Pops {
|
|
|
15953
16194
|
};
|
|
15954
16195
|
};
|
|
15955
16196
|
closed: boolean;
|
|
16197
|
+
cookieStore: {
|
|
16198
|
+
onchange: ((this: CookieStore, ev: CookieChangeEvent) => any) | null;
|
|
16199
|
+
delete: {
|
|
16200
|
+
(name: string): Promise<void>;
|
|
16201
|
+
(options: CookieStoreDeleteOptions): Promise<void>;
|
|
16202
|
+
};
|
|
16203
|
+
get: {
|
|
16204
|
+
(name: string): Promise<CookieListItem | null>;
|
|
16205
|
+
(options?: CookieStoreGetOptions): Promise<CookieListItem | null>;
|
|
16206
|
+
};
|
|
16207
|
+
getAll: {
|
|
16208
|
+
(name: string): Promise<CookieList>;
|
|
16209
|
+
(options?: CookieStoreGetOptions): Promise<CookieList>;
|
|
16210
|
+
};
|
|
16211
|
+
set: {
|
|
16212
|
+
(name: string, value: string): Promise<void>;
|
|
16213
|
+
(options: CookieInit): Promise<void>;
|
|
16214
|
+
};
|
|
16215
|
+
addEventListener: {
|
|
16216
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
16217
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
16218
|
+
};
|
|
16219
|
+
removeEventListener: {
|
|
16220
|
+
<K extends keyof CookieStoreEventMap>(type: K, listener: (this: CookieStore, ev: CookieStoreEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
16221
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
16222
|
+
};
|
|
16223
|
+
dispatchEvent: (event: Event) => boolean;
|
|
16224
|
+
};
|
|
15956
16225
|
customElements: {
|
|
15957
16226
|
define: (name: string, constructor: CustomElementConstructor, options?: ElementDefinitionOptions) => void;
|
|
15958
16227
|
get: (name: string) => CustomElementConstructor | undefined;
|
|
@@ -16066,6 +16335,9 @@ declare class Pops {
|
|
|
16066
16335
|
getCurrentPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => void;
|
|
16067
16336
|
watchPosition: (successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null, options?: PositionOptions) => number;
|
|
16068
16337
|
};
|
|
16338
|
+
readonly login: {
|
|
16339
|
+
setStatus: (status: LoginStatus) => Promise<void>;
|
|
16340
|
+
};
|
|
16069
16341
|
readonly maxTouchPoints: number;
|
|
16070
16342
|
readonly mediaCapabilities: {
|
|
16071
16343
|
decodingInfo: (configuration: MediaDecodingConfiguration) => Promise<MediaCapabilitiesDecodingInfo>;
|
|
@@ -16100,6 +16372,8 @@ declare class Pops {
|
|
|
16100
16372
|
} | null;
|
|
16101
16373
|
playbackState: MediaSessionPlaybackState;
|
|
16102
16374
|
setActionHandler: (action: MediaSessionAction, handler: MediaSessionActionHandler | null) => void;
|
|
16375
|
+
setCameraActive: (active: boolean) => Promise<void>;
|
|
16376
|
+
setMicrophoneActive: (active: boolean) => Promise<void>;
|
|
16103
16377
|
setPositionState: (state?: MediaPositionState) => void;
|
|
16104
16378
|
};
|
|
16105
16379
|
readonly permissions: {
|
|
@@ -16182,8 +16456,8 @@ declare class Pops {
|
|
|
16182
16456
|
readonly locks: {
|
|
16183
16457
|
query: () => Promise<LockManagerSnapshot>;
|
|
16184
16458
|
request: {
|
|
16185
|
-
(name: string, callback: LockGrantedCallback): Promise<
|
|
16186
|
-
(name: string, options: LockOptions, callback: LockGrantedCallback): Promise<
|
|
16459
|
+
<T>(name: string, callback: LockGrantedCallback<T>): Promise<T>;
|
|
16460
|
+
<T>(name: string, options: LockOptions, callback: LockGrantedCallback<T>): Promise<T>;
|
|
16187
16461
|
};
|
|
16188
16462
|
};
|
|
16189
16463
|
readonly onLine: boolean;
|
|
@@ -16241,6 +16515,7 @@ declare class Pops {
|
|
|
16241
16515
|
onorientationchange: ((this: Window, ev: Event) => any) | null;
|
|
16242
16516
|
opener: any;
|
|
16243
16517
|
orientation: number;
|
|
16518
|
+
originAgentCluster: boolean;
|
|
16244
16519
|
outerHeight: number;
|
|
16245
16520
|
outerWidth: number;
|
|
16246
16521
|
pageXOffset: number;
|
|
@@ -16336,18 +16611,19 @@ declare class Pops {
|
|
|
16336
16611
|
onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
16337
16612
|
onanimationiteration: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
16338
16613
|
onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
16339
|
-
onauxclick: ((this: Window, ev:
|
|
16614
|
+
onauxclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16340
16615
|
onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
|
|
16341
|
-
|
|
16616
|
+
onbeforematch: ((this: Window, ev: Event) => any) | null;
|
|
16617
|
+
onbeforetoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
16342
16618
|
onblur: ((this: Window, ev: FocusEvent) => any) | null;
|
|
16343
16619
|
oncancel: ((this: Window, ev: Event) => any) | null;
|
|
16344
16620
|
oncanplay: ((this: Window, ev: Event) => any) | null;
|
|
16345
16621
|
oncanplaythrough: ((this: Window, ev: Event) => any) | null;
|
|
16346
16622
|
onchange: ((this: Window, ev: Event) => any) | null;
|
|
16347
|
-
onclick: ((this: Window, ev:
|
|
16623
|
+
onclick: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16348
16624
|
onclose: ((this: Window, ev: Event) => any) | null;
|
|
16349
16625
|
oncontextlost: ((this: Window, ev: Event) => any) | null;
|
|
16350
|
-
oncontextmenu: ((this: Window, ev:
|
|
16626
|
+
oncontextmenu: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16351
16627
|
oncontextrestored: ((this: Window, ev: Event) => any) | null;
|
|
16352
16628
|
oncopy: ((this: Window, ev: ClipboardEvent) => any) | null;
|
|
16353
16629
|
oncuechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -16395,6 +16671,7 @@ declare class Pops {
|
|
|
16395
16671
|
onpointermove: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16396
16672
|
onpointerout: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16397
16673
|
onpointerover: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16674
|
+
onpointerrawupdate: ((this: Window, ev: Event) => any) | null;
|
|
16398
16675
|
onpointerup: ((this: Window, ev: PointerEvent) => any) | null;
|
|
16399
16676
|
onprogress: ((this: Window, ev: ProgressEvent) => any) | null;
|
|
16400
16677
|
onratechange: ((this: Window, ev: Event) => any) | null;
|
|
@@ -16413,7 +16690,7 @@ declare class Pops {
|
|
|
16413
16690
|
onsubmit: ((this: Window, ev: SubmitEvent) => any) | null;
|
|
16414
16691
|
onsuspend: ((this: Window, ev: Event) => any) | null;
|
|
16415
16692
|
ontimeupdate: ((this: Window, ev: Event) => any) | null;
|
|
16416
|
-
ontoggle: ((this: Window, ev:
|
|
16693
|
+
ontoggle: ((this: Window, ev: ToggleEvent) => any) | null;
|
|
16417
16694
|
ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
16418
16695
|
ontouchend: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
16419
16696
|
ontouchmove: ((this: Window, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -16441,9 +16718,9 @@ declare class Pops {
|
|
|
16441
16718
|
onoffline: ((this: Window, ev: Event) => any) | null;
|
|
16442
16719
|
ononline: ((this: Window, ev: Event) => any) | null;
|
|
16443
16720
|
onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
16444
|
-
onpagereveal: ((this: Window, ev:
|
|
16721
|
+
onpagereveal: ((this: Window, ev: PageRevealEvent) => any) | null;
|
|
16445
16722
|
onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
16446
|
-
onpageswap: ((this: Window, ev:
|
|
16723
|
+
onpageswap: ((this: Window, ev: PageSwapEvent) => any) | null;
|
|
16447
16724
|
onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
|
|
16448
16725
|
onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
16449
16726
|
onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
@@ -16495,7 +16772,7 @@ declare class Pops {
|
|
|
16495
16772
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
16496
16773
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
16497
16774
|
};
|
|
16498
|
-
getRandomValues: <T extends ArrayBufferView
|
|
16775
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
16499
16776
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
16500
16777
|
};
|
|
16501
16778
|
indexedDB: {
|
|
@@ -16659,6 +16936,7 @@ declare class Pops {
|
|
|
16659
16936
|
value: Promise<"ok" | "timed-out">;
|
|
16660
16937
|
};
|
|
16661
16938
|
};
|
|
16939
|
+
pause: (n?: number) => void;
|
|
16662
16940
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
16663
16941
|
};
|
|
16664
16942
|
BigInt: BigIntConstructor;
|
|
@@ -16974,6 +17252,10 @@ declare class Pops {
|
|
|
16974
17252
|
prototype: CDATASection;
|
|
16975
17253
|
new (): CDATASection;
|
|
16976
17254
|
};
|
|
17255
|
+
CSPViolationReportBody: {
|
|
17256
|
+
prototype: CSPViolationReportBody;
|
|
17257
|
+
new (): CSPViolationReportBody;
|
|
17258
|
+
};
|
|
16977
17259
|
CSSAnimation: {
|
|
16978
17260
|
prototype: CSSAnimation;
|
|
16979
17261
|
new (): CSSAnimation;
|
|
@@ -17287,6 +17569,18 @@ declare class Pops {
|
|
|
17287
17569
|
prototype: ConvolverNode;
|
|
17288
17570
|
new (context: BaseAudioContext, options?: ConvolverOptions): ConvolverNode;
|
|
17289
17571
|
};
|
|
17572
|
+
CookieChangeEvent: {
|
|
17573
|
+
prototype: CookieChangeEvent;
|
|
17574
|
+
new (type: string, eventInitDict?: CookieChangeEventInit): CookieChangeEvent;
|
|
17575
|
+
};
|
|
17576
|
+
CookieStore: {
|
|
17577
|
+
prototype: CookieStore;
|
|
17578
|
+
new (): CookieStore;
|
|
17579
|
+
};
|
|
17580
|
+
CookieStoreManager: {
|
|
17581
|
+
prototype: CookieStoreManager;
|
|
17582
|
+
new (): CookieStoreManager;
|
|
17583
|
+
};
|
|
17290
17584
|
CountQueuingStrategy: {
|
|
17291
17585
|
prototype: CountQueuingStrategy;
|
|
17292
17586
|
new (init: QueuingStrategyInit): CountQueuingStrategy;
|
|
@@ -17355,8 +17649,8 @@ declare class Pops {
|
|
|
17355
17649
|
DOMMatrix: {
|
|
17356
17650
|
prototype: DOMMatrix;
|
|
17357
17651
|
new (init?: string | number[]): DOMMatrix;
|
|
17358
|
-
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
17359
|
-
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
17652
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
17653
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
17360
17654
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
17361
17655
|
};
|
|
17362
17656
|
SVGMatrix: typeof DOMMatrix;
|
|
@@ -17364,8 +17658,8 @@ declare class Pops {
|
|
|
17364
17658
|
DOMMatrixReadOnly: {
|
|
17365
17659
|
prototype: DOMMatrixReadOnly;
|
|
17366
17660
|
new (init?: string | number[]): DOMMatrixReadOnly;
|
|
17367
|
-
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
17368
|
-
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
17661
|
+
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
17662
|
+
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
17369
17663
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
17370
17664
|
};
|
|
17371
17665
|
DOMParser: {
|
|
@@ -18036,10 +18330,14 @@ declare class Pops {
|
|
|
18036
18330
|
prototype: ImageBitmapRenderingContext;
|
|
18037
18331
|
new (): ImageBitmapRenderingContext;
|
|
18038
18332
|
};
|
|
18333
|
+
ImageCapture: {
|
|
18334
|
+
prototype: ImageCapture;
|
|
18335
|
+
new (videoTrack: MediaStreamTrack): ImageCapture;
|
|
18336
|
+
};
|
|
18039
18337
|
ImageData: {
|
|
18040
18338
|
prototype: ImageData;
|
|
18041
18339
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
18042
|
-
new (data:
|
|
18340
|
+
new (data: ImageDataArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
18043
18341
|
};
|
|
18044
18342
|
ImageDecoder: {
|
|
18045
18343
|
prototype: ImageDecoder;
|
|
@@ -18292,6 +18590,10 @@ declare class Pops {
|
|
|
18292
18590
|
prototype: Navigator;
|
|
18293
18591
|
new (): Navigator;
|
|
18294
18592
|
};
|
|
18593
|
+
NavigatorLogin: {
|
|
18594
|
+
prototype: NavigatorLogin;
|
|
18595
|
+
new (): NavigatorLogin;
|
|
18596
|
+
};
|
|
18295
18597
|
Node: {
|
|
18296
18598
|
prototype: Node;
|
|
18297
18599
|
new (): Node;
|
|
@@ -18562,7 +18864,7 @@ declare class Pops {
|
|
|
18562
18864
|
};
|
|
18563
18865
|
RTCIceCandidate: {
|
|
18564
18866
|
prototype: RTCIceCandidate;
|
|
18565
|
-
new (candidateInitDict?:
|
|
18867
|
+
new (candidateInitDict?: RTCLocalIceCandidateInit): RTCIceCandidate;
|
|
18566
18868
|
};
|
|
18567
18869
|
RTCIceTransport: {
|
|
18568
18870
|
prototype: RTCIceTransport;
|
|
@@ -18635,13 +18937,13 @@ declare class Pops {
|
|
|
18635
18937
|
prototype: ReadableStream;
|
|
18636
18938
|
new (underlyingSource: UnderlyingByteSource, strategy?: {
|
|
18637
18939
|
highWaterMark?: number;
|
|
18638
|
-
}): ReadableStream<Uint8Array
|
|
18940
|
+
}): ReadableStream<Uint8Array<ArrayBuffer>>;
|
|
18639
18941
|
new <R = any>(underlyingSource: UnderlyingDefaultSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
18640
18942
|
new <R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
|
|
18641
18943
|
};
|
|
18642
18944
|
ReadableStreamBYOBReader: {
|
|
18643
18945
|
prototype: ReadableStreamBYOBReader;
|
|
18644
|
-
new (stream: ReadableStream<Uint8Array
|
|
18946
|
+
new (stream: ReadableStream<Uint8Array<ArrayBuffer>>): ReadableStreamBYOBReader;
|
|
18645
18947
|
};
|
|
18646
18948
|
ReadableStreamBYOBRequest: {
|
|
18647
18949
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -20500,28 +20802,6 @@ declare class Pops {
|
|
|
20500
20802
|
prototype: XSLTProcessor;
|
|
20501
20803
|
new (): XSLTProcessor;
|
|
20502
20804
|
};
|
|
20503
|
-
console: {
|
|
20504
|
-
assert: (condition?: boolean, ...data: any[]) => void;
|
|
20505
|
-
clear: () => void;
|
|
20506
|
-
count: (label?: string) => void;
|
|
20507
|
-
countReset: (label?: string) => void;
|
|
20508
|
-
debug: (...data: any[]) => void;
|
|
20509
|
-
dir: (item?: any, options?: any) => void;
|
|
20510
|
-
dirxml: (...data: any[]) => void;
|
|
20511
|
-
error: (...data: any[]) => void;
|
|
20512
|
-
group: (...data: any[]) => void;
|
|
20513
|
-
groupCollapsed: (...data: any[]) => void;
|
|
20514
|
-
groupEnd: () => void;
|
|
20515
|
-
info: (...data: any[]) => void;
|
|
20516
|
-
log: (...data: any[]) => void;
|
|
20517
|
-
table: (tabularData?: any, properties?: string[]) => void;
|
|
20518
|
-
time: (label?: string) => void;
|
|
20519
|
-
timeEnd: (label?: string) => void;
|
|
20520
|
-
timeLog: (label?: string, ...data: any[]) => void;
|
|
20521
|
-
timeStamp: (label?: string) => void;
|
|
20522
|
-
trace: (...data: any[]) => void;
|
|
20523
|
-
warn: (...data: any[]) => void;
|
|
20524
|
-
};
|
|
20525
20805
|
CSS: {
|
|
20526
20806
|
Hz: typeof CSS.Hz;
|
|
20527
20807
|
Q: typeof CSS.Q;
|
|
@@ -20637,6 +20917,28 @@ declare class Pops {
|
|
|
20637
20917
|
new (descriptor: WebAssembly.TableDescriptor, value?: any): WebAssembly.Table;
|
|
20638
20918
|
};
|
|
20639
20919
|
};
|
|
20920
|
+
console: {
|
|
20921
|
+
assert: (condition?: boolean, ...data: any[]) => void;
|
|
20922
|
+
clear: () => void;
|
|
20923
|
+
count: (label?: string) => void;
|
|
20924
|
+
countReset: (label?: string) => void;
|
|
20925
|
+
debug: (...data: any[]) => void;
|
|
20926
|
+
dir: (item?: any, options?: any) => void;
|
|
20927
|
+
dirxml: (...data: any[]) => void;
|
|
20928
|
+
error: (...data: any[]) => void;
|
|
20929
|
+
group: (...data: any[]) => void;
|
|
20930
|
+
groupCollapsed: (...data: any[]) => void;
|
|
20931
|
+
groupEnd: () => void;
|
|
20932
|
+
info: (...data: any[]) => void;
|
|
20933
|
+
log: (...data: any[]) => void;
|
|
20934
|
+
table: (tabularData?: any, properties?: string[]) => void;
|
|
20935
|
+
time: (label?: string) => void;
|
|
20936
|
+
timeEnd: (label?: string) => void;
|
|
20937
|
+
timeLog: (label?: string, ...data: any[]) => void;
|
|
20938
|
+
timeStamp: (label?: string) => void;
|
|
20939
|
+
trace: (...data: any[]) => void;
|
|
20940
|
+
warn: (...data: any[]) => void;
|
|
20941
|
+
};
|
|
20640
20942
|
Audio: {
|
|
20641
20943
|
new (src?: string): HTMLAudioElement;
|
|
20642
20944
|
};
|
|
@@ -20730,6 +21032,7 @@ declare class Pops {
|
|
|
20730
21032
|
value: Promise<"ok" | "timed-out">;
|
|
20731
21033
|
};
|
|
20732
21034
|
};
|
|
21035
|
+
pause: (n?: number) => void;
|
|
20733
21036
|
readonly [Symbol.toStringTag]: "Atomics";
|
|
20734
21037
|
};
|
|
20735
21038
|
BigInt: BigIntConstructor;
|
|
@@ -20797,18 +21100,19 @@ declare class Pops {
|
|
|
20797
21100
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
20798
21101
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
20799
21102
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
20800
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
21103
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20801
21104
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
20802
|
-
|
|
21105
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
21106
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
20803
21107
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
20804
21108
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20805
21109
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20806
21110
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20807
21111
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20808
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
21112
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20809
21113
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20810
21114
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20811
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
21115
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20812
21116
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20813
21117
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
20814
21118
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -20856,6 +21160,7 @@ declare class Pops {
|
|
|
20856
21160
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20857
21161
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20858
21162
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
21163
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20859
21164
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
20860
21165
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
20861
21166
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -20874,7 +21179,7 @@ declare class Pops {
|
|
|
20874
21179
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
20875
21180
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20876
21181
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
20877
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
21182
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
20878
21183
|
ontouchcancel: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
|
|
20879
21184
|
ontouchend: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
|
|
20880
21185
|
ontouchmove: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null;
|
|
@@ -20902,9 +21207,9 @@ declare class Pops {
|
|
|
20902
21207
|
onoffline: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20903
21208
|
ononline: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20904
21209
|
onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
|
|
20905
|
-
onpagereveal: ((this: WindowEventHandlers, ev:
|
|
21210
|
+
onpagereveal: ((this: WindowEventHandlers, ev: PageRevealEvent) => any) | null;
|
|
20906
21211
|
onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
|
|
20907
|
-
onpageswap: ((this: WindowEventHandlers, ev:
|
|
21212
|
+
onpageswap: ((this: WindowEventHandlers, ev: PageSwapEvent) => any) | null;
|
|
20908
21213
|
onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;
|
|
20909
21214
|
onrejectionhandled: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
|
|
20910
21215
|
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
|
|
@@ -20956,7 +21261,7 @@ declare class Pops {
|
|
|
20956
21261
|
verify: (algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams, key: CryptoKey, signature: BufferSource, data: BufferSource) => Promise<boolean>;
|
|
20957
21262
|
wrapKey: (format: KeyFormat, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams) => Promise<ArrayBuffer>;
|
|
20958
21263
|
};
|
|
20959
|
-
getRandomValues: <T extends ArrayBufferView
|
|
21264
|
+
getRandomValues: <T extends ArrayBufferView>(array: T) => T;
|
|
20960
21265
|
randomUUID: () => `${string}-${string}-${string}-${string}-${string}`;
|
|
20961
21266
|
};
|
|
20962
21267
|
readonly indexedDB: {
|