@whitesev/pops 2.0.7 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.amd.js +380 -55
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +380 -55
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +380 -55
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +380 -55
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +380 -55
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +380 -55
- package/dist/index.umd.js.map +1 -1
- package/dist/types/src/Pops.d.ts +549 -199
- package/dist/types/src/components/rightClickMenu/index.d.ts +545 -199
- package/dist/types/src/components/tooltip/index.d.ts +9 -2
- package/dist/types/src/components/tooltip/indexType.d.ts +6 -4
- package/dist/types/src/utils/PopsUtils.d.ts +16 -0
- package/package.json +6 -5
- package/src/Pops.ts +2 -2
- package/src/components/drawer/index.ts +2 -2
- package/src/components/folder/index.ts +2 -2
- package/src/components/iframe/index.ts +1 -1
- package/src/components/panel/PanelHandleContentDetails.ts +9 -9
- package/src/components/rightClickMenu/index.ts +1 -1
- package/src/components/searchSuggestion/index.ts +2 -2
- package/src/components/tooltip/index.ts +56 -16
- package/src/components/tooltip/indexType.ts +11 -4
- package/src/utils/PopsDOMUtils.ts +1 -1
- package/src/utils/PopsInstanceUtils.ts +6 -6
- package/src/utils/PopsUtils.ts +53 -1
package/dist/types/src/Pops.d.ts
CHANGED
|
@@ -79,6 +79,10 @@ declare class Pops {
|
|
|
79
79
|
formatTime(text?: string | number | Date, formatType?: "yyyy-MM-dd HH:mm:ss" | "yyyy/MM/dd HH:mm:ss" | "yyyy_MM_dd_HH_mm_ss" | "yyyy\u5E74MM\u6708dd\u65E5 HH\u65F6mm\u5206ss\u79D2" | "yyyy\u5E74MM\u6708dd\u65E5 hh:mm:ss" | "yyyy\u5E74MM\u6708dd\u65E5 HH:mm:ss" | "yyyy-MM-dd" | "yyyyMMdd" | "HH:mm:ss"): string;
|
|
80
80
|
formatByteToSize<T extends boolean>(byteSize: number | string, addType?: T | undefined): T extends true ? string : number;
|
|
81
81
|
AnyTouch: () => typeof import("any-touch").default;
|
|
82
|
+
setTimeout(callback: Function, timeout?: number): number;
|
|
83
|
+
clearTimeout(timeId: number | undefined): void;
|
|
84
|
+
setInterval(callback: Function, timeout?: number): number;
|
|
85
|
+
clearInterval(timeId: number | undefined): void;
|
|
82
86
|
};
|
|
83
87
|
/** pops使用的DOM工具类 */
|
|
84
88
|
DOMUtils: {
|
|
@@ -365,7 +369,7 @@ declare class Pops {
|
|
|
365
369
|
dispatchEvent: (event: Event) => boolean;
|
|
366
370
|
removeEventListener: (type: string, callback: EventListenerOrEventListenerObject | null, options?: EventListenerOptions | boolean) => void;
|
|
367
371
|
} | {
|
|
368
|
-
[x: number]: any;
|
|
372
|
+
[x: number]: /*elided*/ any;
|
|
369
373
|
readonly clientInformation: {
|
|
370
374
|
readonly clipboard: {
|
|
371
375
|
read: () => Promise<ClipboardItems>;
|
|
@@ -513,7 +517,7 @@ declare class Pops {
|
|
|
513
517
|
[x: number]: {
|
|
514
518
|
readonly description: string;
|
|
515
519
|
readonly enabledPlugin: {
|
|
516
|
-
[x: number]: any;
|
|
520
|
+
[x: number]: /*elided*/ any;
|
|
517
521
|
readonly description: string;
|
|
518
522
|
readonly filename: string;
|
|
519
523
|
readonly length: number;
|
|
@@ -531,7 +535,12 @@ declare class Pops {
|
|
|
531
535
|
readonly pdfViewerEnabled: boolean;
|
|
532
536
|
readonly plugins: {
|
|
533
537
|
[x: number]: {
|
|
534
|
-
[x: number]:
|
|
538
|
+
[x: number]: {
|
|
539
|
+
readonly description: string;
|
|
540
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
541
|
+
readonly suffixes: string;
|
|
542
|
+
readonly type: string;
|
|
543
|
+
};
|
|
535
544
|
readonly description: string;
|
|
536
545
|
readonly filename: string;
|
|
537
546
|
readonly length: number;
|
|
@@ -603,7 +612,7 @@ declare class Pops {
|
|
|
603
612
|
IsSearchProviderInstalled: () => void;
|
|
604
613
|
};
|
|
605
614
|
readonly frameElement: Element | null;
|
|
606
|
-
readonly frames: any;
|
|
615
|
+
readonly frames: /*elided*/ any;
|
|
607
616
|
readonly history: {
|
|
608
617
|
readonly length: number;
|
|
609
618
|
scrollRestoration: ScrollRestoration;
|
|
@@ -792,7 +801,7 @@ declare class Pops {
|
|
|
792
801
|
[x: number]: {
|
|
793
802
|
readonly description: string;
|
|
794
803
|
readonly enabledPlugin: {
|
|
795
|
-
[x: number]: any;
|
|
804
|
+
[x: number]: /*elided*/ any;
|
|
796
805
|
readonly description: string;
|
|
797
806
|
readonly filename: string;
|
|
798
807
|
readonly length: number;
|
|
@@ -810,7 +819,12 @@ declare class Pops {
|
|
|
810
819
|
readonly pdfViewerEnabled: boolean;
|
|
811
820
|
readonly plugins: {
|
|
812
821
|
[x: number]: {
|
|
813
|
-
[x: number]:
|
|
822
|
+
[x: number]: {
|
|
823
|
+
readonly description: string;
|
|
824
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
825
|
+
readonly suffixes: string;
|
|
826
|
+
readonly type: string;
|
|
827
|
+
};
|
|
814
828
|
readonly description: string;
|
|
815
829
|
readonly filename: string;
|
|
816
830
|
readonly length: number;
|
|
@@ -841,7 +855,7 @@ declare class Pops {
|
|
|
841
855
|
readonly outerWidth: number;
|
|
842
856
|
readonly pageXOffset: number;
|
|
843
857
|
readonly pageYOffset: number;
|
|
844
|
-
readonly parent: any;
|
|
858
|
+
readonly parent: /*elided*/ any;
|
|
845
859
|
readonly personalbar: {
|
|
846
860
|
readonly visible: boolean;
|
|
847
861
|
};
|
|
@@ -878,7 +892,7 @@ declare class Pops {
|
|
|
878
892
|
readonly visible: boolean;
|
|
879
893
|
};
|
|
880
894
|
readonly self: {
|
|
881
|
-
[x: number]: any;
|
|
895
|
+
[x: number]: /*elided*/ any;
|
|
882
896
|
clientInformation: {
|
|
883
897
|
readonly clipboard: {
|
|
884
898
|
read: () => Promise<ClipboardItems>;
|
|
@@ -1026,7 +1040,7 @@ declare class Pops {
|
|
|
1026
1040
|
[x: number]: {
|
|
1027
1041
|
readonly description: string;
|
|
1028
1042
|
readonly enabledPlugin: {
|
|
1029
|
-
[x: number]: any;
|
|
1043
|
+
[x: number]: /*elided*/ any;
|
|
1030
1044
|
readonly description: string;
|
|
1031
1045
|
readonly filename: string;
|
|
1032
1046
|
readonly length: number;
|
|
@@ -1044,7 +1058,12 @@ declare class Pops {
|
|
|
1044
1058
|
readonly pdfViewerEnabled: boolean;
|
|
1045
1059
|
readonly plugins: {
|
|
1046
1060
|
[x: number]: {
|
|
1047
|
-
[x: number]:
|
|
1061
|
+
[x: number]: {
|
|
1062
|
+
readonly description: string;
|
|
1063
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
1064
|
+
readonly suffixes: string;
|
|
1065
|
+
readonly type: string;
|
|
1066
|
+
};
|
|
1048
1067
|
readonly description: string;
|
|
1049
1068
|
readonly filename: string;
|
|
1050
1069
|
readonly length: number;
|
|
@@ -1116,7 +1135,7 @@ declare class Pops {
|
|
|
1116
1135
|
IsSearchProviderInstalled: () => void;
|
|
1117
1136
|
};
|
|
1118
1137
|
frameElement: Element | null;
|
|
1119
|
-
frames: any;
|
|
1138
|
+
frames: /*elided*/ any;
|
|
1120
1139
|
history: {
|
|
1121
1140
|
readonly length: number;
|
|
1122
1141
|
scrollRestoration: ScrollRestoration;
|
|
@@ -1305,7 +1324,7 @@ declare class Pops {
|
|
|
1305
1324
|
[x: number]: {
|
|
1306
1325
|
readonly description: string;
|
|
1307
1326
|
readonly enabledPlugin: {
|
|
1308
|
-
[x: number]: any;
|
|
1327
|
+
[x: number]: /*elided*/ any;
|
|
1309
1328
|
readonly description: string;
|
|
1310
1329
|
readonly filename: string;
|
|
1311
1330
|
readonly length: number;
|
|
@@ -1323,7 +1342,12 @@ declare class Pops {
|
|
|
1323
1342
|
readonly pdfViewerEnabled: boolean;
|
|
1324
1343
|
readonly plugins: {
|
|
1325
1344
|
[x: number]: {
|
|
1326
|
-
[x: number]:
|
|
1345
|
+
[x: number]: {
|
|
1346
|
+
readonly description: string;
|
|
1347
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
1348
|
+
readonly suffixes: string;
|
|
1349
|
+
readonly type: string;
|
|
1350
|
+
};
|
|
1327
1351
|
readonly description: string;
|
|
1328
1352
|
readonly filename: string;
|
|
1329
1353
|
readonly length: number;
|
|
@@ -1354,7 +1378,7 @@ declare class Pops {
|
|
|
1354
1378
|
outerWidth: number;
|
|
1355
1379
|
pageXOffset: number;
|
|
1356
1380
|
pageYOffset: number;
|
|
1357
|
-
parent: any;
|
|
1381
|
+
parent: /*elided*/ any;
|
|
1358
1382
|
personalbar: {
|
|
1359
1383
|
readonly visible: boolean;
|
|
1360
1384
|
};
|
|
@@ -1390,7 +1414,7 @@ declare class Pops {
|
|
|
1390
1414
|
scrollbars: {
|
|
1391
1415
|
readonly visible: boolean;
|
|
1392
1416
|
};
|
|
1393
|
-
self: any;
|
|
1417
|
+
self: /*elided*/ any;
|
|
1394
1418
|
speechSynthesis: {
|
|
1395
1419
|
onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
|
|
1396
1420
|
readonly paused: boolean;
|
|
@@ -1418,7 +1442,7 @@ declare class Pops {
|
|
|
1418
1442
|
toolbar: {
|
|
1419
1443
|
readonly visible: boolean;
|
|
1420
1444
|
};
|
|
1421
|
-
top: any | null;
|
|
1445
|
+
top: /*elided*/ any | null;
|
|
1422
1446
|
visualViewport: {
|
|
1423
1447
|
readonly height: number;
|
|
1424
1448
|
readonly offsetLeft: number;
|
|
@@ -1439,7 +1463,7 @@ declare class Pops {
|
|
|
1439
1463
|
};
|
|
1440
1464
|
dispatchEvent: (event: Event) => boolean;
|
|
1441
1465
|
} | null;
|
|
1442
|
-
window: any;
|
|
1466
|
+
window: /*elided*/ any;
|
|
1443
1467
|
alert: ((message?: any) => void) & typeof alert;
|
|
1444
1468
|
blur: (() => void) & typeof blur;
|
|
1445
1469
|
cancelIdleCallback: ((handle: number) => void) & typeof cancelIdleCallback;
|
|
@@ -1597,7 +1621,9 @@ declare class Pops {
|
|
|
1597
1621
|
onoffline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1598
1622
|
ononline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1599
1623
|
onpagehide: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
1624
|
+
onpagereveal: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1600
1625
|
onpageshow: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
1626
|
+
onpageswap: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
1601
1627
|
onpopstate: (((this: WindowEventHandlers, ev: PopStateEvent) => any) & ((this: Window, ev: PopStateEvent) => any)) | null;
|
|
1602
1628
|
onrejectionhandled: (((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) & ((this: Window, ev: PromiseRejectionEvent) => any)) | null;
|
|
1603
1629
|
onstorage: (((this: WindowEventHandlers, ev: StorageEvent) => any) & ((this: Window, ev: StorageEvent) => any)) | null;
|
|
@@ -1623,7 +1649,7 @@ declare class Pops {
|
|
|
1623
1649
|
crypto: {
|
|
1624
1650
|
readonly subtle: {
|
|
1625
1651
|
decrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
1626
|
-
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length
|
|
1652
|
+
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null) => Promise<ArrayBuffer>;
|
|
1627
1653
|
deriveKey: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]) => Promise<CryptoKey>;
|
|
1628
1654
|
digest: (algorithm: AlgorithmIdentifier, data: BufferSource) => Promise<ArrayBuffer>;
|
|
1629
1655
|
encrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
@@ -1633,7 +1659,9 @@ declare class Pops {
|
|
|
1633
1659
|
(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
|
|
1634
1660
|
};
|
|
1635
1661
|
generateKey: {
|
|
1636
|
-
(algorithm: "Ed25519"
|
|
1662
|
+
(algorithm: "Ed25519" | {
|
|
1663
|
+
name: "Ed25519";
|
|
1664
|
+
}, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
|
|
1637
1665
|
(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
|
|
1638
1666
|
(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
|
|
1639
1667
|
(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
|
|
@@ -1742,7 +1770,7 @@ declare class Pops {
|
|
|
1742
1770
|
setItem: (key: string, value: string) => void;
|
|
1743
1771
|
};
|
|
1744
1772
|
readonly globalThis: {
|
|
1745
|
-
readonly globalThis: any;
|
|
1773
|
+
readonly globalThis: /*elided*/ any;
|
|
1746
1774
|
eval: typeof eval;
|
|
1747
1775
|
parseInt: typeof parseInt;
|
|
1748
1776
|
parseFloat: typeof parseFloat;
|
|
@@ -1806,6 +1834,7 @@ declare class Pops {
|
|
|
1806
1834
|
trunc: (x: number) => number;
|
|
1807
1835
|
fround: (x: number) => number;
|
|
1808
1836
|
cbrt: (x: number) => number;
|
|
1837
|
+
f16round: (x: number) => number;
|
|
1809
1838
|
readonly [Symbol.toStringTag]: string;
|
|
1810
1839
|
};
|
|
1811
1840
|
Date: DateConstructor;
|
|
@@ -1984,10 +2013,24 @@ declare class Pops {
|
|
|
1984
2013
|
prototype: AudioContext;
|
|
1985
2014
|
new (contextOptions?: AudioContextOptions): AudioContext;
|
|
1986
2015
|
};
|
|
2016
|
+
AudioData: {
|
|
2017
|
+
prototype: AudioData;
|
|
2018
|
+
new (init: AudioDataInit): AudioData;
|
|
2019
|
+
};
|
|
2020
|
+
AudioDecoder: {
|
|
2021
|
+
prototype: AudioDecoder;
|
|
2022
|
+
new (init: AudioDecoderInit): AudioDecoder;
|
|
2023
|
+
isConfigSupported(config: AudioDecoderConfig): Promise<AudioDecoderSupport>;
|
|
2024
|
+
};
|
|
1987
2025
|
AudioDestinationNode: {
|
|
1988
2026
|
prototype: AudioDestinationNode;
|
|
1989
2027
|
new (): AudioDestinationNode;
|
|
1990
2028
|
};
|
|
2029
|
+
AudioEncoder: {
|
|
2030
|
+
prototype: AudioEncoder;
|
|
2031
|
+
new (init: AudioEncoderInit): AudioEncoder;
|
|
2032
|
+
isConfigSupported(config: AudioEncoderConfig): Promise<AudioEncoderSupport>;
|
|
2033
|
+
};
|
|
1991
2034
|
AudioListener: {
|
|
1992
2035
|
prototype: AudioListener;
|
|
1993
2036
|
new (): AudioListener;
|
|
@@ -2172,6 +2215,10 @@ declare class Pops {
|
|
|
2172
2215
|
prototype: CSSNamespaceRule;
|
|
2173
2216
|
new (): CSSNamespaceRule;
|
|
2174
2217
|
};
|
|
2218
|
+
CSSNestedDeclarations: {
|
|
2219
|
+
prototype: CSSNestedDeclarations;
|
|
2220
|
+
new (): CSSNestedDeclarations;
|
|
2221
|
+
};
|
|
2175
2222
|
CSSNumericArray: {
|
|
2176
2223
|
prototype: CSSNumericArray;
|
|
2177
2224
|
new (): CSSNumericArray;
|
|
@@ -2292,6 +2339,10 @@ declare class Pops {
|
|
|
2292
2339
|
prototype: CSSVariableReferenceValue;
|
|
2293
2340
|
new (variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
|
|
2294
2341
|
};
|
|
2342
|
+
CSSViewTransitionRule: {
|
|
2343
|
+
prototype: CSSViewTransitionRule;
|
|
2344
|
+
new (): CSSViewTransitionRule;
|
|
2345
|
+
};
|
|
2295
2346
|
Cache: {
|
|
2296
2347
|
prototype: Cache;
|
|
2297
2348
|
new (): Cache;
|
|
@@ -2316,6 +2367,10 @@ declare class Pops {
|
|
|
2316
2367
|
prototype: CanvasRenderingContext2D;
|
|
2317
2368
|
new (): CanvasRenderingContext2D;
|
|
2318
2369
|
};
|
|
2370
|
+
CaretPosition: {
|
|
2371
|
+
prototype: CaretPosition;
|
|
2372
|
+
new (): CaretPosition;
|
|
2373
|
+
};
|
|
2319
2374
|
ChannelMergerNode: {
|
|
2320
2375
|
prototype: ChannelMergerNode;
|
|
2321
2376
|
new (context: BaseAudioContext, options?: ChannelMergerOptions): ChannelMergerNode;
|
|
@@ -2559,6 +2614,10 @@ declare class Pops {
|
|
|
2559
2614
|
prototype: ElementInternals;
|
|
2560
2615
|
new (): ElementInternals;
|
|
2561
2616
|
};
|
|
2617
|
+
EncodedAudioChunk: {
|
|
2618
|
+
prototype: EncodedAudioChunk;
|
|
2619
|
+
new (init: EncodedAudioChunkInit): EncodedAudioChunk;
|
|
2620
|
+
};
|
|
2562
2621
|
EncodedVideoChunk: {
|
|
2563
2622
|
prototype: EncodedVideoChunk;
|
|
2564
2623
|
new (init: EncodedVideoChunkInit): EncodedVideoChunk;
|
|
@@ -2651,11 +2710,11 @@ declare class Pops {
|
|
|
2651
2710
|
};
|
|
2652
2711
|
FontFace: {
|
|
2653
2712
|
prototype: FontFace;
|
|
2654
|
-
new (family: string, source: string |
|
|
2713
|
+
new (family: string, source: string | BufferSource, descriptors?: FontFaceDescriptors): FontFace;
|
|
2655
2714
|
};
|
|
2656
2715
|
FontFaceSet: {
|
|
2657
2716
|
prototype: FontFaceSet;
|
|
2658
|
-
new (
|
|
2717
|
+
new (): FontFaceSet;
|
|
2659
2718
|
};
|
|
2660
2719
|
FontFaceSetLoadEvent: {
|
|
2661
2720
|
prototype: FontFaceSetLoadEvent;
|
|
@@ -2669,6 +2728,10 @@ declare class Pops {
|
|
|
2669
2728
|
prototype: FormDataEvent;
|
|
2670
2729
|
new (type: string, eventInitDict: FormDataEventInit): FormDataEvent;
|
|
2671
2730
|
};
|
|
2731
|
+
FragmentDirective: {
|
|
2732
|
+
prototype: FragmentDirective;
|
|
2733
|
+
new (): FragmentDirective;
|
|
2734
|
+
};
|
|
2672
2735
|
GainNode: {
|
|
2673
2736
|
prototype: GainNode;
|
|
2674
2737
|
new (context: BaseAudioContext, options?: GainOptions): GainNode;
|
|
@@ -3115,6 +3178,19 @@ declare class Pops {
|
|
|
3115
3178
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
3116
3179
|
new (data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
3117
3180
|
};
|
|
3181
|
+
ImageDecoder: {
|
|
3182
|
+
prototype: ImageDecoder;
|
|
3183
|
+
new (init: ImageDecoderInit): ImageDecoder;
|
|
3184
|
+
isTypeSupported(type: string): Promise<boolean>;
|
|
3185
|
+
};
|
|
3186
|
+
ImageTrack: {
|
|
3187
|
+
prototype: ImageTrack;
|
|
3188
|
+
new (): ImageTrack;
|
|
3189
|
+
};
|
|
3190
|
+
ImageTrackList: {
|
|
3191
|
+
prototype: ImageTrackList;
|
|
3192
|
+
new (): ImageTrackList;
|
|
3193
|
+
};
|
|
3118
3194
|
InputDeviceInfo: {
|
|
3119
3195
|
prototype: InputDeviceInfo;
|
|
3120
3196
|
new (): InputDeviceInfo;
|
|
@@ -3129,7 +3205,7 @@ declare class Pops {
|
|
|
3129
3205
|
};
|
|
3130
3206
|
IntersectionObserverEntry: {
|
|
3131
3207
|
prototype: IntersectionObserverEntry;
|
|
3132
|
-
new (
|
|
3208
|
+
new (): IntersectionObserverEntry;
|
|
3133
3209
|
};
|
|
3134
3210
|
KeyboardEvent: {
|
|
3135
3211
|
prototype: KeyboardEvent;
|
|
@@ -3325,13 +3401,6 @@ declare class Pops {
|
|
|
3325
3401
|
prototype: MouseEvent;
|
|
3326
3402
|
new (type: string, eventInitDict?: MouseEventInit): MouseEvent;
|
|
3327
3403
|
};
|
|
3328
|
-
MutationEvent: {
|
|
3329
|
-
prototype: MutationEvent;
|
|
3330
|
-
new (): MutationEvent;
|
|
3331
|
-
readonly MODIFICATION: 1;
|
|
3332
|
-
readonly ADDITION: 2;
|
|
3333
|
-
readonly REMOVAL: 3;
|
|
3334
|
-
};
|
|
3335
3404
|
MutationObserver: {
|
|
3336
3405
|
prototype: MutationObserver;
|
|
3337
3406
|
new (callback: MutationCallback): MutationObserver;
|
|
@@ -3344,6 +3413,14 @@ declare class Pops {
|
|
|
3344
3413
|
prototype: NamedNodeMap;
|
|
3345
3414
|
new (): NamedNodeMap;
|
|
3346
3415
|
};
|
|
3416
|
+
NavigationActivation: {
|
|
3417
|
+
prototype: NavigationActivation;
|
|
3418
|
+
new (): NavigationActivation;
|
|
3419
|
+
};
|
|
3420
|
+
NavigationHistoryEntry: {
|
|
3421
|
+
prototype: NavigationHistoryEntry;
|
|
3422
|
+
new (): NavigationHistoryEntry;
|
|
3423
|
+
};
|
|
3347
3424
|
NavigationPreloadManager: {
|
|
3348
3425
|
prototype: NavigationPreloadManager;
|
|
3349
3426
|
new (): NavigationPreloadManager;
|
|
@@ -3413,6 +3490,14 @@ declare class Pops {
|
|
|
3413
3490
|
prototype: OverconstrainedError;
|
|
3414
3491
|
new (constraint: string, message?: string): OverconstrainedError;
|
|
3415
3492
|
};
|
|
3493
|
+
PageRevealEvent: {
|
|
3494
|
+
prototype: PageRevealEvent;
|
|
3495
|
+
new (type: string, eventInitDict?: PageRevealEventInit): PageRevealEvent;
|
|
3496
|
+
};
|
|
3497
|
+
PageSwapEvent: {
|
|
3498
|
+
prototype: PageSwapEvent;
|
|
3499
|
+
new (type: string, eventInitDict?: PageSwapEventInit): PageSwapEvent;
|
|
3500
|
+
};
|
|
3416
3501
|
PageTransitionEvent: {
|
|
3417
3502
|
prototype: PageTransitionEvent;
|
|
3418
3503
|
new (type: string, eventInitDict?: PageTransitionEventInit): PageTransitionEvent;
|
|
@@ -3425,13 +3510,17 @@ declare class Pops {
|
|
|
3425
3510
|
prototype: Path2D;
|
|
3426
3511
|
new (path?: Path2D | string): Path2D;
|
|
3427
3512
|
};
|
|
3513
|
+
PaymentAddress: {
|
|
3514
|
+
prototype: PaymentAddress;
|
|
3515
|
+
new (): PaymentAddress;
|
|
3516
|
+
};
|
|
3428
3517
|
PaymentMethodChangeEvent: {
|
|
3429
3518
|
prototype: PaymentMethodChangeEvent;
|
|
3430
3519
|
new (type: string, eventInitDict?: PaymentMethodChangeEventInit): PaymentMethodChangeEvent;
|
|
3431
3520
|
};
|
|
3432
3521
|
PaymentRequest: {
|
|
3433
3522
|
prototype: PaymentRequest;
|
|
3434
|
-
new (methodData: PaymentMethodData[], details: PaymentDetailsInit): PaymentRequest;
|
|
3523
|
+
new (methodData: PaymentMethodData[], details: PaymentDetailsInit, options?: PaymentOptions): PaymentRequest;
|
|
3435
3524
|
};
|
|
3436
3525
|
PaymentRequestUpdateEvent: {
|
|
3437
3526
|
prototype: PaymentRequestUpdateEvent;
|
|
@@ -3549,8 +3638,11 @@ declare class Pops {
|
|
|
3549
3638
|
PublicKeyCredential: {
|
|
3550
3639
|
prototype: PublicKeyCredential;
|
|
3551
3640
|
new (): PublicKeyCredential;
|
|
3641
|
+
getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
|
|
3552
3642
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
3553
3643
|
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
|
|
3644
|
+
parseCreationOptionsFromJSON(options: PublicKeyCredentialCreationOptionsJSON): PublicKeyCredentialCreationOptions;
|
|
3645
|
+
parseRequestOptionsFromJSON(options: PublicKeyCredentialRequestOptionsJSON): PublicKeyCredentialRequestOptions;
|
|
3554
3646
|
};
|
|
3555
3647
|
PushManager: {
|
|
3556
3648
|
prototype: PushManager;
|
|
@@ -3686,7 +3778,7 @@ declare class Pops {
|
|
|
3686
3778
|
};
|
|
3687
3779
|
ReadableStreamBYOBReader: {
|
|
3688
3780
|
prototype: ReadableStreamBYOBReader;
|
|
3689
|
-
new (stream: ReadableStream): ReadableStreamBYOBReader;
|
|
3781
|
+
new (stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
|
|
3690
3782
|
};
|
|
3691
3783
|
ReadableStreamBYOBRequest: {
|
|
3692
3784
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -4495,6 +4587,10 @@ declare class Pops {
|
|
|
4495
4587
|
prototype: ViewTransition;
|
|
4496
4588
|
new (): ViewTransition;
|
|
4497
4589
|
};
|
|
4590
|
+
ViewTransitionTypeSet: {
|
|
4591
|
+
prototype: ViewTransitionTypeSet;
|
|
4592
|
+
new (): ViewTransitionTypeSet;
|
|
4593
|
+
};
|
|
4498
4594
|
VisualViewport: {
|
|
4499
4595
|
prototype: VisualViewport;
|
|
4500
4596
|
new (): VisualViewport;
|
|
@@ -5834,7 +5930,7 @@ declare class Pops {
|
|
|
5834
5930
|
[x: number]: {
|
|
5835
5931
|
readonly description: string;
|
|
5836
5932
|
readonly enabledPlugin: {
|
|
5837
|
-
[x: number]: any;
|
|
5933
|
+
[x: number]: /*elided*/ any;
|
|
5838
5934
|
readonly description: string;
|
|
5839
5935
|
readonly filename: string;
|
|
5840
5936
|
readonly length: number;
|
|
@@ -5852,7 +5948,12 @@ declare class Pops {
|
|
|
5852
5948
|
readonly pdfViewerEnabled: boolean;
|
|
5853
5949
|
readonly plugins: {
|
|
5854
5950
|
[x: number]: {
|
|
5855
|
-
[x: number]:
|
|
5951
|
+
[x: number]: {
|
|
5952
|
+
readonly description: string;
|
|
5953
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
5954
|
+
readonly suffixes: string;
|
|
5955
|
+
readonly type: string;
|
|
5956
|
+
};
|
|
5856
5957
|
readonly description: string;
|
|
5857
5958
|
readonly filename: string;
|
|
5858
5959
|
readonly length: number;
|
|
@@ -5924,7 +6025,7 @@ declare class Pops {
|
|
|
5924
6025
|
IsSearchProviderInstalled: () => void;
|
|
5925
6026
|
};
|
|
5926
6027
|
frameElement: Element | null;
|
|
5927
|
-
frames: any;
|
|
6028
|
+
frames: /*elided*/ any;
|
|
5928
6029
|
history: {
|
|
5929
6030
|
readonly length: number;
|
|
5930
6031
|
scrollRestoration: ScrollRestoration;
|
|
@@ -6112,7 +6213,7 @@ declare class Pops {
|
|
|
6112
6213
|
[x: number]: {
|
|
6113
6214
|
readonly description: string;
|
|
6114
6215
|
readonly enabledPlugin: {
|
|
6115
|
-
[x: number]: any;
|
|
6216
|
+
[x: number]: /*elided*/ any;
|
|
6116
6217
|
readonly description: string;
|
|
6117
6218
|
readonly filename: string;
|
|
6118
6219
|
readonly length: number;
|
|
@@ -6130,7 +6231,12 @@ declare class Pops {
|
|
|
6130
6231
|
readonly pdfViewerEnabled: boolean;
|
|
6131
6232
|
readonly plugins: {
|
|
6132
6233
|
[x: number]: {
|
|
6133
|
-
[x: number]:
|
|
6234
|
+
[x: number]: {
|
|
6235
|
+
readonly description: string;
|
|
6236
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
6237
|
+
readonly suffixes: string;
|
|
6238
|
+
readonly type: string;
|
|
6239
|
+
};
|
|
6134
6240
|
readonly description: string;
|
|
6135
6241
|
readonly filename: string;
|
|
6136
6242
|
readonly length: number;
|
|
@@ -6161,7 +6267,7 @@ declare class Pops {
|
|
|
6161
6267
|
outerWidth: number;
|
|
6162
6268
|
pageXOffset: number;
|
|
6163
6269
|
pageYOffset: number;
|
|
6164
|
-
parent: any;
|
|
6270
|
+
parent: /*elided*/ any;
|
|
6165
6271
|
personalbar: {
|
|
6166
6272
|
readonly visible: boolean;
|
|
6167
6273
|
};
|
|
@@ -6197,7 +6303,7 @@ declare class Pops {
|
|
|
6197
6303
|
scrollbars: {
|
|
6198
6304
|
readonly visible: boolean;
|
|
6199
6305
|
};
|
|
6200
|
-
self: any;
|
|
6306
|
+
self: /*elided*/ any;
|
|
6201
6307
|
speechSynthesis: {
|
|
6202
6308
|
onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
|
|
6203
6309
|
readonly paused: boolean;
|
|
@@ -6225,7 +6331,7 @@ declare class Pops {
|
|
|
6225
6331
|
toolbar: {
|
|
6226
6332
|
readonly visible: boolean;
|
|
6227
6333
|
};
|
|
6228
|
-
top: any | null;
|
|
6334
|
+
top: /*elided*/ any | null;
|
|
6229
6335
|
visualViewport: {
|
|
6230
6336
|
readonly height: number;
|
|
6231
6337
|
readonly offsetLeft: number;
|
|
@@ -6246,7 +6352,7 @@ declare class Pops {
|
|
|
6246
6352
|
};
|
|
6247
6353
|
dispatchEvent: (event: Event) => boolean;
|
|
6248
6354
|
} | null;
|
|
6249
|
-
window: any;
|
|
6355
|
+
window: /*elided*/ any;
|
|
6250
6356
|
onabort: ((this: Window, ev: UIEvent) => any) | null;
|
|
6251
6357
|
onanimationcancel: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
6252
6358
|
onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
@@ -6357,7 +6463,9 @@ declare class Pops {
|
|
|
6357
6463
|
onoffline: ((this: Window, ev: Event) => any) | null;
|
|
6358
6464
|
ononline: ((this: Window, ev: Event) => any) | null;
|
|
6359
6465
|
onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
6466
|
+
onpagereveal: ((this: Window, ev: Event) => any) | null;
|
|
6360
6467
|
onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
6468
|
+
onpageswap: ((this: Window, ev: Event) => any) | null;
|
|
6361
6469
|
onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
|
|
6362
6470
|
onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
6363
6471
|
onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
@@ -6383,7 +6491,7 @@ declare class Pops {
|
|
|
6383
6491
|
crypto: {
|
|
6384
6492
|
readonly subtle: {
|
|
6385
6493
|
decrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
6386
|
-
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length
|
|
6494
|
+
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null) => Promise<ArrayBuffer>;
|
|
6387
6495
|
deriveKey: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]) => Promise<CryptoKey>;
|
|
6388
6496
|
digest: (algorithm: AlgorithmIdentifier, data: BufferSource) => Promise<ArrayBuffer>;
|
|
6389
6497
|
encrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
@@ -6393,7 +6501,9 @@ declare class Pops {
|
|
|
6393
6501
|
(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
|
|
6394
6502
|
};
|
|
6395
6503
|
generateKey: {
|
|
6396
|
-
(algorithm: "Ed25519"
|
|
6504
|
+
(algorithm: "Ed25519" | {
|
|
6505
|
+
name: "Ed25519";
|
|
6506
|
+
}, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
|
|
6397
6507
|
(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
|
|
6398
6508
|
(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
|
|
6399
6509
|
(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
|
|
@@ -6511,49 +6621,49 @@ declare class Pops {
|
|
|
6511
6621
|
SharedArrayBuffer: SharedArrayBufferConstructor;
|
|
6512
6622
|
Atomics: {
|
|
6513
6623
|
add: {
|
|
6514
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6515
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6624
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6625
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6516
6626
|
};
|
|
6517
6627
|
and: {
|
|
6518
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6519
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6628
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6629
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6520
6630
|
};
|
|
6521
6631
|
compareExchange: {
|
|
6522
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6523
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6632
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, expectedValue: number, replacementValue: number): number;
|
|
6633
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, expectedValue: bigint, replacementValue: bigint): bigint;
|
|
6524
6634
|
};
|
|
6525
6635
|
exchange: {
|
|
6526
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6527
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6636
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6637
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6528
6638
|
};
|
|
6529
6639
|
isLockFree: (size: number) => boolean;
|
|
6530
6640
|
load: {
|
|
6531
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6532
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6641
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number): number;
|
|
6642
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number): bigint;
|
|
6533
6643
|
};
|
|
6534
6644
|
or: {
|
|
6535
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6536
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6645
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6646
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6537
6647
|
};
|
|
6538
6648
|
store: {
|
|
6539
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6540
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6649
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6650
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6541
6651
|
};
|
|
6542
6652
|
sub: {
|
|
6543
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6544
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6653
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6654
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6545
6655
|
};
|
|
6546
6656
|
wait: {
|
|
6547
|
-
(typedArray: Int32Array
|
|
6548
|
-
(typedArray: BigInt64Array
|
|
6657
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
6658
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
6549
6659
|
};
|
|
6550
6660
|
notify: {
|
|
6551
|
-
(typedArray: Int32Array
|
|
6552
|
-
(typedArray: BigInt64Array
|
|
6661
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
6662
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
6553
6663
|
};
|
|
6554
6664
|
xor: {
|
|
6555
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
6556
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
6665
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
6666
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
6557
6667
|
};
|
|
6558
6668
|
waitAsync: {
|
|
6559
6669
|
(typedArray: Int32Array, index: number, value: number, timeout?: number): {
|
|
@@ -6582,7 +6692,8 @@ declare class Pops {
|
|
|
6582
6692
|
SuppressedError: SuppressedErrorConstructor;
|
|
6583
6693
|
DisposableStack: DisposableStackConstructor;
|
|
6584
6694
|
AsyncDisposableStack: AsyncDisposableStackConstructor;
|
|
6585
|
-
|
|
6695
|
+
Float16Array: Float16ArrayConstructor;
|
|
6696
|
+
unsafeWindow: /*elided*/ any;
|
|
6586
6697
|
undefined: undefined;
|
|
6587
6698
|
};
|
|
6588
6699
|
eval: typeof eval;
|
|
@@ -6648,6 +6759,7 @@ declare class Pops {
|
|
|
6648
6759
|
trunc: (x: number) => number;
|
|
6649
6760
|
fround: (x: number) => number;
|
|
6650
6761
|
cbrt: (x: number) => number;
|
|
6762
|
+
f16round: (x: number) => number;
|
|
6651
6763
|
readonly [Symbol.toStringTag]: string;
|
|
6652
6764
|
};
|
|
6653
6765
|
Date: DateConstructor;
|
|
@@ -6786,10 +6898,24 @@ declare class Pops {
|
|
|
6786
6898
|
prototype: AudioContext;
|
|
6787
6899
|
new (contextOptions?: AudioContextOptions): AudioContext;
|
|
6788
6900
|
};
|
|
6901
|
+
AudioData: {
|
|
6902
|
+
prototype: AudioData;
|
|
6903
|
+
new (init: AudioDataInit): AudioData;
|
|
6904
|
+
};
|
|
6905
|
+
AudioDecoder: {
|
|
6906
|
+
prototype: AudioDecoder;
|
|
6907
|
+
new (init: AudioDecoderInit): AudioDecoder;
|
|
6908
|
+
isConfigSupported(config: AudioDecoderConfig): Promise<AudioDecoderSupport>;
|
|
6909
|
+
};
|
|
6789
6910
|
AudioDestinationNode: {
|
|
6790
6911
|
prototype: AudioDestinationNode;
|
|
6791
6912
|
new (): AudioDestinationNode;
|
|
6792
6913
|
};
|
|
6914
|
+
AudioEncoder: {
|
|
6915
|
+
prototype: AudioEncoder;
|
|
6916
|
+
new (init: AudioEncoderInit): AudioEncoder;
|
|
6917
|
+
isConfigSupported(config: AudioEncoderConfig): Promise<AudioEncoderSupport>;
|
|
6918
|
+
};
|
|
6793
6919
|
AudioListener: {
|
|
6794
6920
|
prototype: AudioListener;
|
|
6795
6921
|
new (): AudioListener;
|
|
@@ -6974,6 +7100,10 @@ declare class Pops {
|
|
|
6974
7100
|
prototype: CSSNamespaceRule;
|
|
6975
7101
|
new (): CSSNamespaceRule;
|
|
6976
7102
|
};
|
|
7103
|
+
CSSNestedDeclarations: {
|
|
7104
|
+
prototype: CSSNestedDeclarations;
|
|
7105
|
+
new (): CSSNestedDeclarations;
|
|
7106
|
+
};
|
|
6977
7107
|
CSSNumericArray: {
|
|
6978
7108
|
prototype: CSSNumericArray;
|
|
6979
7109
|
new (): CSSNumericArray;
|
|
@@ -7094,6 +7224,10 @@ declare class Pops {
|
|
|
7094
7224
|
prototype: CSSVariableReferenceValue;
|
|
7095
7225
|
new (variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
|
|
7096
7226
|
};
|
|
7227
|
+
CSSViewTransitionRule: {
|
|
7228
|
+
prototype: CSSViewTransitionRule;
|
|
7229
|
+
new (): CSSViewTransitionRule;
|
|
7230
|
+
};
|
|
7097
7231
|
Cache: {
|
|
7098
7232
|
prototype: Cache;
|
|
7099
7233
|
new (): Cache;
|
|
@@ -7118,6 +7252,10 @@ declare class Pops {
|
|
|
7118
7252
|
prototype: CanvasRenderingContext2D;
|
|
7119
7253
|
new (): CanvasRenderingContext2D;
|
|
7120
7254
|
};
|
|
7255
|
+
CaretPosition: {
|
|
7256
|
+
prototype: CaretPosition;
|
|
7257
|
+
new (): CaretPosition;
|
|
7258
|
+
};
|
|
7121
7259
|
ChannelMergerNode: {
|
|
7122
7260
|
prototype: ChannelMergerNode;
|
|
7123
7261
|
new (context: BaseAudioContext, options?: ChannelMergerOptions): ChannelMergerNode;
|
|
@@ -7361,6 +7499,10 @@ declare class Pops {
|
|
|
7361
7499
|
prototype: ElementInternals;
|
|
7362
7500
|
new (): ElementInternals;
|
|
7363
7501
|
};
|
|
7502
|
+
EncodedAudioChunk: {
|
|
7503
|
+
prototype: EncodedAudioChunk;
|
|
7504
|
+
new (init: EncodedAudioChunkInit): EncodedAudioChunk;
|
|
7505
|
+
};
|
|
7364
7506
|
EncodedVideoChunk: {
|
|
7365
7507
|
prototype: EncodedVideoChunk;
|
|
7366
7508
|
new (init: EncodedVideoChunkInit): EncodedVideoChunk;
|
|
@@ -7453,11 +7595,11 @@ declare class Pops {
|
|
|
7453
7595
|
};
|
|
7454
7596
|
FontFace: {
|
|
7455
7597
|
prototype: FontFace;
|
|
7456
|
-
new (family: string, source: string |
|
|
7598
|
+
new (family: string, source: string | BufferSource, descriptors?: FontFaceDescriptors): FontFace;
|
|
7457
7599
|
};
|
|
7458
7600
|
FontFaceSet: {
|
|
7459
7601
|
prototype: FontFaceSet;
|
|
7460
|
-
new (
|
|
7602
|
+
new (): FontFaceSet;
|
|
7461
7603
|
};
|
|
7462
7604
|
FontFaceSetLoadEvent: {
|
|
7463
7605
|
prototype: FontFaceSetLoadEvent;
|
|
@@ -7471,6 +7613,10 @@ declare class Pops {
|
|
|
7471
7613
|
prototype: FormDataEvent;
|
|
7472
7614
|
new (type: string, eventInitDict: FormDataEventInit): FormDataEvent;
|
|
7473
7615
|
};
|
|
7616
|
+
FragmentDirective: {
|
|
7617
|
+
prototype: FragmentDirective;
|
|
7618
|
+
new (): FragmentDirective;
|
|
7619
|
+
};
|
|
7474
7620
|
GainNode: {
|
|
7475
7621
|
prototype: GainNode;
|
|
7476
7622
|
new (context: BaseAudioContext, options?: GainOptions): GainNode;
|
|
@@ -7917,6 +8063,19 @@ declare class Pops {
|
|
|
7917
8063
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
7918
8064
|
new (data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
7919
8065
|
};
|
|
8066
|
+
ImageDecoder: {
|
|
8067
|
+
prototype: ImageDecoder;
|
|
8068
|
+
new (init: ImageDecoderInit): ImageDecoder;
|
|
8069
|
+
isTypeSupported(type: string): Promise<boolean>;
|
|
8070
|
+
};
|
|
8071
|
+
ImageTrack: {
|
|
8072
|
+
prototype: ImageTrack;
|
|
8073
|
+
new (): ImageTrack;
|
|
8074
|
+
};
|
|
8075
|
+
ImageTrackList: {
|
|
8076
|
+
prototype: ImageTrackList;
|
|
8077
|
+
new (): ImageTrackList;
|
|
8078
|
+
};
|
|
7920
8079
|
InputDeviceInfo: {
|
|
7921
8080
|
prototype: InputDeviceInfo;
|
|
7922
8081
|
new (): InputDeviceInfo;
|
|
@@ -7931,7 +8090,7 @@ declare class Pops {
|
|
|
7931
8090
|
};
|
|
7932
8091
|
IntersectionObserverEntry: {
|
|
7933
8092
|
prototype: IntersectionObserverEntry;
|
|
7934
|
-
new (
|
|
8093
|
+
new (): IntersectionObserverEntry;
|
|
7935
8094
|
};
|
|
7936
8095
|
KeyboardEvent: {
|
|
7937
8096
|
prototype: KeyboardEvent;
|
|
@@ -8127,13 +8286,6 @@ declare class Pops {
|
|
|
8127
8286
|
prototype: MouseEvent;
|
|
8128
8287
|
new (type: string, eventInitDict?: MouseEventInit): MouseEvent;
|
|
8129
8288
|
};
|
|
8130
|
-
MutationEvent: {
|
|
8131
|
-
prototype: MutationEvent;
|
|
8132
|
-
new (): MutationEvent;
|
|
8133
|
-
readonly MODIFICATION: 1;
|
|
8134
|
-
readonly ADDITION: 2;
|
|
8135
|
-
readonly REMOVAL: 3;
|
|
8136
|
-
};
|
|
8137
8289
|
MutationObserver: {
|
|
8138
8290
|
prototype: MutationObserver;
|
|
8139
8291
|
new (callback: MutationCallback): MutationObserver;
|
|
@@ -8146,6 +8298,14 @@ declare class Pops {
|
|
|
8146
8298
|
prototype: NamedNodeMap;
|
|
8147
8299
|
new (): NamedNodeMap;
|
|
8148
8300
|
};
|
|
8301
|
+
NavigationActivation: {
|
|
8302
|
+
prototype: NavigationActivation;
|
|
8303
|
+
new (): NavigationActivation;
|
|
8304
|
+
};
|
|
8305
|
+
NavigationHistoryEntry: {
|
|
8306
|
+
prototype: NavigationHistoryEntry;
|
|
8307
|
+
new (): NavigationHistoryEntry;
|
|
8308
|
+
};
|
|
8149
8309
|
NavigationPreloadManager: {
|
|
8150
8310
|
prototype: NavigationPreloadManager;
|
|
8151
8311
|
new (): NavigationPreloadManager;
|
|
@@ -8215,6 +8375,14 @@ declare class Pops {
|
|
|
8215
8375
|
prototype: OverconstrainedError;
|
|
8216
8376
|
new (constraint: string, message?: string): OverconstrainedError;
|
|
8217
8377
|
};
|
|
8378
|
+
PageRevealEvent: {
|
|
8379
|
+
prototype: PageRevealEvent;
|
|
8380
|
+
new (type: string, eventInitDict?: PageRevealEventInit): PageRevealEvent;
|
|
8381
|
+
};
|
|
8382
|
+
PageSwapEvent: {
|
|
8383
|
+
prototype: PageSwapEvent;
|
|
8384
|
+
new (type: string, eventInitDict?: PageSwapEventInit): PageSwapEvent;
|
|
8385
|
+
};
|
|
8218
8386
|
PageTransitionEvent: {
|
|
8219
8387
|
prototype: PageTransitionEvent;
|
|
8220
8388
|
new (type: string, eventInitDict?: PageTransitionEventInit): PageTransitionEvent;
|
|
@@ -8227,13 +8395,17 @@ declare class Pops {
|
|
|
8227
8395
|
prototype: Path2D;
|
|
8228
8396
|
new (path?: Path2D | string): Path2D;
|
|
8229
8397
|
};
|
|
8398
|
+
PaymentAddress: {
|
|
8399
|
+
prototype: PaymentAddress;
|
|
8400
|
+
new (): PaymentAddress;
|
|
8401
|
+
};
|
|
8230
8402
|
PaymentMethodChangeEvent: {
|
|
8231
8403
|
prototype: PaymentMethodChangeEvent;
|
|
8232
8404
|
new (type: string, eventInitDict?: PaymentMethodChangeEventInit): PaymentMethodChangeEvent;
|
|
8233
8405
|
};
|
|
8234
8406
|
PaymentRequest: {
|
|
8235
8407
|
prototype: PaymentRequest;
|
|
8236
|
-
new (methodData: PaymentMethodData[], details: PaymentDetailsInit): PaymentRequest;
|
|
8408
|
+
new (methodData: PaymentMethodData[], details: PaymentDetailsInit, options?: PaymentOptions): PaymentRequest;
|
|
8237
8409
|
};
|
|
8238
8410
|
PaymentRequestUpdateEvent: {
|
|
8239
8411
|
prototype: PaymentRequestUpdateEvent;
|
|
@@ -8351,8 +8523,11 @@ declare class Pops {
|
|
|
8351
8523
|
PublicKeyCredential: {
|
|
8352
8524
|
prototype: PublicKeyCredential;
|
|
8353
8525
|
new (): PublicKeyCredential;
|
|
8526
|
+
getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
|
|
8354
8527
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
8355
8528
|
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
|
|
8529
|
+
parseCreationOptionsFromJSON(options: PublicKeyCredentialCreationOptionsJSON): PublicKeyCredentialCreationOptions;
|
|
8530
|
+
parseRequestOptionsFromJSON(options: PublicKeyCredentialRequestOptionsJSON): PublicKeyCredentialRequestOptions;
|
|
8356
8531
|
};
|
|
8357
8532
|
PushManager: {
|
|
8358
8533
|
prototype: PushManager;
|
|
@@ -8488,7 +8663,7 @@ declare class Pops {
|
|
|
8488
8663
|
};
|
|
8489
8664
|
ReadableStreamBYOBReader: {
|
|
8490
8665
|
prototype: ReadableStreamBYOBReader;
|
|
8491
|
-
new (stream: ReadableStream): ReadableStreamBYOBReader;
|
|
8666
|
+
new (stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
|
|
8492
8667
|
};
|
|
8493
8668
|
ReadableStreamBYOBRequest: {
|
|
8494
8669
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -9297,6 +9472,10 @@ declare class Pops {
|
|
|
9297
9472
|
prototype: ViewTransition;
|
|
9298
9473
|
new (): ViewTransition;
|
|
9299
9474
|
};
|
|
9475
|
+
ViewTransitionTypeSet: {
|
|
9476
|
+
prototype: ViewTransitionTypeSet;
|
|
9477
|
+
new (): ViewTransitionTypeSet;
|
|
9478
|
+
};
|
|
9300
9479
|
VisualViewport: {
|
|
9301
9480
|
prototype: VisualViewport;
|
|
9302
9481
|
new (): VisualViewport;
|
|
@@ -10513,49 +10692,49 @@ declare class Pops {
|
|
|
10513
10692
|
SharedArrayBuffer: SharedArrayBufferConstructor;
|
|
10514
10693
|
Atomics: {
|
|
10515
10694
|
add: {
|
|
10516
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10517
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10695
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10696
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10518
10697
|
};
|
|
10519
10698
|
and: {
|
|
10520
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10521
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10699
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10700
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10522
10701
|
};
|
|
10523
10702
|
compareExchange: {
|
|
10524
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10525
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10703
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, expectedValue: number, replacementValue: number): number;
|
|
10704
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, expectedValue: bigint, replacementValue: bigint): bigint;
|
|
10526
10705
|
};
|
|
10527
10706
|
exchange: {
|
|
10528
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10529
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10707
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10708
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10530
10709
|
};
|
|
10531
10710
|
isLockFree: (size: number) => boolean;
|
|
10532
10711
|
load: {
|
|
10533
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10534
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10712
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number): number;
|
|
10713
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number): bigint;
|
|
10535
10714
|
};
|
|
10536
10715
|
or: {
|
|
10537
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10538
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10716
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10717
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10539
10718
|
};
|
|
10540
10719
|
store: {
|
|
10541
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10542
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10720
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10721
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10543
10722
|
};
|
|
10544
10723
|
sub: {
|
|
10545
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10546
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10724
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10725
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10547
10726
|
};
|
|
10548
10727
|
wait: {
|
|
10549
|
-
(typedArray: Int32Array
|
|
10550
|
-
(typedArray: BigInt64Array
|
|
10728
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
10729
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
10551
10730
|
};
|
|
10552
10731
|
notify: {
|
|
10553
|
-
(typedArray: Int32Array
|
|
10554
|
-
(typedArray: BigInt64Array
|
|
10732
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
10733
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
10555
10734
|
};
|
|
10556
10735
|
xor: {
|
|
10557
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
10558
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
10736
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
10737
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
10559
10738
|
};
|
|
10560
10739
|
waitAsync: {
|
|
10561
10740
|
(typedArray: Int32Array, index: number, value: number, timeout?: number): {
|
|
@@ -10584,7 +10763,8 @@ declare class Pops {
|
|
|
10584
10763
|
SuppressedError: SuppressedErrorConstructor;
|
|
10585
10764
|
DisposableStack: DisposableStackConstructor;
|
|
10586
10765
|
AsyncDisposableStack: AsyncDisposableStackConstructor;
|
|
10587
|
-
|
|
10766
|
+
Float16Array: Float16ArrayConstructor;
|
|
10767
|
+
unsafeWindow: /*elided*/ any;
|
|
10588
10768
|
undefined: undefined;
|
|
10589
10769
|
};
|
|
10590
10770
|
readonly speechSynthesis: {
|
|
@@ -10614,7 +10794,7 @@ declare class Pops {
|
|
|
10614
10794
|
readonly toolbar: {
|
|
10615
10795
|
readonly visible: boolean;
|
|
10616
10796
|
};
|
|
10617
|
-
readonly top: any | null;
|
|
10797
|
+
readonly top: /*elided*/ any | null;
|
|
10618
10798
|
readonly visualViewport: {
|
|
10619
10799
|
readonly height: number;
|
|
10620
10800
|
readonly offsetLeft: number;
|
|
@@ -10636,7 +10816,7 @@ declare class Pops {
|
|
|
10636
10816
|
dispatchEvent: (event: Event) => boolean;
|
|
10637
10817
|
} | null;
|
|
10638
10818
|
readonly window: {
|
|
10639
|
-
[x: number]: any;
|
|
10819
|
+
[x: number]: /*elided*/ any;
|
|
10640
10820
|
clientInformation: {
|
|
10641
10821
|
readonly clipboard: {
|
|
10642
10822
|
read: () => Promise<ClipboardItems>;
|
|
@@ -10784,7 +10964,7 @@ declare class Pops {
|
|
|
10784
10964
|
[x: number]: {
|
|
10785
10965
|
readonly description: string;
|
|
10786
10966
|
readonly enabledPlugin: {
|
|
10787
|
-
[x: number]: any;
|
|
10967
|
+
[x: number]: /*elided*/ any;
|
|
10788
10968
|
readonly description: string;
|
|
10789
10969
|
readonly filename: string;
|
|
10790
10970
|
readonly length: number;
|
|
@@ -10802,7 +10982,12 @@ declare class Pops {
|
|
|
10802
10982
|
readonly pdfViewerEnabled: boolean;
|
|
10803
10983
|
readonly plugins: {
|
|
10804
10984
|
[x: number]: {
|
|
10805
|
-
[x: number]:
|
|
10985
|
+
[x: number]: {
|
|
10986
|
+
readonly description: string;
|
|
10987
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
10988
|
+
readonly suffixes: string;
|
|
10989
|
+
readonly type: string;
|
|
10990
|
+
};
|
|
10806
10991
|
readonly description: string;
|
|
10807
10992
|
readonly filename: string;
|
|
10808
10993
|
readonly length: number;
|
|
@@ -10874,7 +11059,7 @@ declare class Pops {
|
|
|
10874
11059
|
IsSearchProviderInstalled: () => void;
|
|
10875
11060
|
};
|
|
10876
11061
|
frameElement: Element | null;
|
|
10877
|
-
frames: any;
|
|
11062
|
+
frames: /*elided*/ any;
|
|
10878
11063
|
history: {
|
|
10879
11064
|
readonly length: number;
|
|
10880
11065
|
scrollRestoration: ScrollRestoration;
|
|
@@ -11063,7 +11248,7 @@ declare class Pops {
|
|
|
11063
11248
|
[x: number]: {
|
|
11064
11249
|
readonly description: string;
|
|
11065
11250
|
readonly enabledPlugin: {
|
|
11066
|
-
[x: number]: any;
|
|
11251
|
+
[x: number]: /*elided*/ any;
|
|
11067
11252
|
readonly description: string;
|
|
11068
11253
|
readonly filename: string;
|
|
11069
11254
|
readonly length: number;
|
|
@@ -11081,7 +11266,12 @@ declare class Pops {
|
|
|
11081
11266
|
readonly pdfViewerEnabled: boolean;
|
|
11082
11267
|
readonly plugins: {
|
|
11083
11268
|
[x: number]: {
|
|
11084
|
-
[x: number]:
|
|
11269
|
+
[x: number]: {
|
|
11270
|
+
readonly description: string;
|
|
11271
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
11272
|
+
readonly suffixes: string;
|
|
11273
|
+
readonly type: string;
|
|
11274
|
+
};
|
|
11085
11275
|
readonly description: string;
|
|
11086
11276
|
readonly filename: string;
|
|
11087
11277
|
readonly length: number;
|
|
@@ -11112,7 +11302,7 @@ declare class Pops {
|
|
|
11112
11302
|
outerWidth: number;
|
|
11113
11303
|
pageXOffset: number;
|
|
11114
11304
|
pageYOffset: number;
|
|
11115
|
-
parent: any;
|
|
11305
|
+
parent: /*elided*/ any;
|
|
11116
11306
|
personalbar: {
|
|
11117
11307
|
readonly visible: boolean;
|
|
11118
11308
|
};
|
|
@@ -11148,7 +11338,7 @@ declare class Pops {
|
|
|
11148
11338
|
scrollbars: {
|
|
11149
11339
|
readonly visible: boolean;
|
|
11150
11340
|
};
|
|
11151
|
-
self: any;
|
|
11341
|
+
self: /*elided*/ any;
|
|
11152
11342
|
speechSynthesis: {
|
|
11153
11343
|
onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
|
|
11154
11344
|
readonly paused: boolean;
|
|
@@ -11176,7 +11366,7 @@ declare class Pops {
|
|
|
11176
11366
|
toolbar: {
|
|
11177
11367
|
readonly visible: boolean;
|
|
11178
11368
|
};
|
|
11179
|
-
top: any | null;
|
|
11369
|
+
top: /*elided*/ any | null;
|
|
11180
11370
|
visualViewport: {
|
|
11181
11371
|
readonly height: number;
|
|
11182
11372
|
readonly offsetLeft: number;
|
|
@@ -11197,7 +11387,7 @@ declare class Pops {
|
|
|
11197
11387
|
};
|
|
11198
11388
|
dispatchEvent: (event: Event) => boolean;
|
|
11199
11389
|
} | null;
|
|
11200
|
-
window: any;
|
|
11390
|
+
window: /*elided*/ any;
|
|
11201
11391
|
alert: ((message?: any) => void) & typeof alert;
|
|
11202
11392
|
blur: (() => void) & typeof blur;
|
|
11203
11393
|
cancelIdleCallback: ((handle: number) => void) & typeof cancelIdleCallback;
|
|
@@ -11355,7 +11545,9 @@ declare class Pops {
|
|
|
11355
11545
|
onoffline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11356
11546
|
ononline: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11357
11547
|
onpagehide: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
11548
|
+
onpagereveal: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11358
11549
|
onpageshow: (((this: WindowEventHandlers, ev: PageTransitionEvent) => any) & ((this: Window, ev: PageTransitionEvent) => any)) | null;
|
|
11550
|
+
onpageswap: (((this: WindowEventHandlers, ev: Event) => any) & ((this: Window, ev: Event) => any)) | null;
|
|
11359
11551
|
onpopstate: (((this: WindowEventHandlers, ev: PopStateEvent) => any) & ((this: Window, ev: PopStateEvent) => any)) | null;
|
|
11360
11552
|
onrejectionhandled: (((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) & ((this: Window, ev: PromiseRejectionEvent) => any)) | null;
|
|
11361
11553
|
onstorage: (((this: WindowEventHandlers, ev: StorageEvent) => any) & ((this: Window, ev: StorageEvent) => any)) | null;
|
|
@@ -11381,7 +11573,7 @@ declare class Pops {
|
|
|
11381
11573
|
crypto: {
|
|
11382
11574
|
readonly subtle: {
|
|
11383
11575
|
decrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
11384
|
-
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length
|
|
11576
|
+
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null) => Promise<ArrayBuffer>;
|
|
11385
11577
|
deriveKey: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]) => Promise<CryptoKey>;
|
|
11386
11578
|
digest: (algorithm: AlgorithmIdentifier, data: BufferSource) => Promise<ArrayBuffer>;
|
|
11387
11579
|
encrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
@@ -11391,7 +11583,9 @@ declare class Pops {
|
|
|
11391
11583
|
(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
|
|
11392
11584
|
};
|
|
11393
11585
|
generateKey: {
|
|
11394
|
-
(algorithm: "Ed25519"
|
|
11586
|
+
(algorithm: "Ed25519" | {
|
|
11587
|
+
name: "Ed25519";
|
|
11588
|
+
}, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
|
|
11395
11589
|
(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
|
|
11396
11590
|
(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
|
|
11397
11591
|
(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
|
|
@@ -11500,7 +11694,7 @@ declare class Pops {
|
|
|
11500
11694
|
setItem: (key: string, value: string) => void;
|
|
11501
11695
|
};
|
|
11502
11696
|
readonly globalThis: {
|
|
11503
|
-
readonly globalThis: any;
|
|
11697
|
+
readonly globalThis: /*elided*/ any;
|
|
11504
11698
|
eval: typeof eval;
|
|
11505
11699
|
parseInt: typeof parseInt;
|
|
11506
11700
|
parseFloat: typeof parseFloat;
|
|
@@ -11564,6 +11758,7 @@ declare class Pops {
|
|
|
11564
11758
|
trunc: (x: number) => number;
|
|
11565
11759
|
fround: (x: number) => number;
|
|
11566
11760
|
cbrt: (x: number) => number;
|
|
11761
|
+
f16round: (x: number) => number;
|
|
11567
11762
|
readonly [Symbol.toStringTag]: string;
|
|
11568
11763
|
};
|
|
11569
11764
|
Date: DateConstructor;
|
|
@@ -11742,10 +11937,24 @@ declare class Pops {
|
|
|
11742
11937
|
prototype: AudioContext;
|
|
11743
11938
|
new (contextOptions?: AudioContextOptions): AudioContext;
|
|
11744
11939
|
};
|
|
11940
|
+
AudioData: {
|
|
11941
|
+
prototype: AudioData;
|
|
11942
|
+
new (init: AudioDataInit): AudioData;
|
|
11943
|
+
};
|
|
11944
|
+
AudioDecoder: {
|
|
11945
|
+
prototype: AudioDecoder;
|
|
11946
|
+
new (init: AudioDecoderInit): AudioDecoder;
|
|
11947
|
+
isConfigSupported(config: AudioDecoderConfig): Promise<AudioDecoderSupport>;
|
|
11948
|
+
};
|
|
11745
11949
|
AudioDestinationNode: {
|
|
11746
11950
|
prototype: AudioDestinationNode;
|
|
11747
11951
|
new (): AudioDestinationNode;
|
|
11748
11952
|
};
|
|
11953
|
+
AudioEncoder: {
|
|
11954
|
+
prototype: AudioEncoder;
|
|
11955
|
+
new (init: AudioEncoderInit): AudioEncoder;
|
|
11956
|
+
isConfigSupported(config: AudioEncoderConfig): Promise<AudioEncoderSupport>;
|
|
11957
|
+
};
|
|
11749
11958
|
AudioListener: {
|
|
11750
11959
|
prototype: AudioListener;
|
|
11751
11960
|
new (): AudioListener;
|
|
@@ -11930,6 +12139,10 @@ declare class Pops {
|
|
|
11930
12139
|
prototype: CSSNamespaceRule;
|
|
11931
12140
|
new (): CSSNamespaceRule;
|
|
11932
12141
|
};
|
|
12142
|
+
CSSNestedDeclarations: {
|
|
12143
|
+
prototype: CSSNestedDeclarations;
|
|
12144
|
+
new (): CSSNestedDeclarations;
|
|
12145
|
+
};
|
|
11933
12146
|
CSSNumericArray: {
|
|
11934
12147
|
prototype: CSSNumericArray;
|
|
11935
12148
|
new (): CSSNumericArray;
|
|
@@ -12050,6 +12263,10 @@ declare class Pops {
|
|
|
12050
12263
|
prototype: CSSVariableReferenceValue;
|
|
12051
12264
|
new (variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
|
|
12052
12265
|
};
|
|
12266
|
+
CSSViewTransitionRule: {
|
|
12267
|
+
prototype: CSSViewTransitionRule;
|
|
12268
|
+
new (): CSSViewTransitionRule;
|
|
12269
|
+
};
|
|
12053
12270
|
Cache: {
|
|
12054
12271
|
prototype: Cache;
|
|
12055
12272
|
new (): Cache;
|
|
@@ -12074,6 +12291,10 @@ declare class Pops {
|
|
|
12074
12291
|
prototype: CanvasRenderingContext2D;
|
|
12075
12292
|
new (): CanvasRenderingContext2D;
|
|
12076
12293
|
};
|
|
12294
|
+
CaretPosition: {
|
|
12295
|
+
prototype: CaretPosition;
|
|
12296
|
+
new (): CaretPosition;
|
|
12297
|
+
};
|
|
12077
12298
|
ChannelMergerNode: {
|
|
12078
12299
|
prototype: ChannelMergerNode;
|
|
12079
12300
|
new (context: BaseAudioContext, options?: ChannelMergerOptions): ChannelMergerNode;
|
|
@@ -12317,6 +12538,10 @@ declare class Pops {
|
|
|
12317
12538
|
prototype: ElementInternals;
|
|
12318
12539
|
new (): ElementInternals;
|
|
12319
12540
|
};
|
|
12541
|
+
EncodedAudioChunk: {
|
|
12542
|
+
prototype: EncodedAudioChunk;
|
|
12543
|
+
new (init: EncodedAudioChunkInit): EncodedAudioChunk;
|
|
12544
|
+
};
|
|
12320
12545
|
EncodedVideoChunk: {
|
|
12321
12546
|
prototype: EncodedVideoChunk;
|
|
12322
12547
|
new (init: EncodedVideoChunkInit): EncodedVideoChunk;
|
|
@@ -12409,11 +12634,11 @@ declare class Pops {
|
|
|
12409
12634
|
};
|
|
12410
12635
|
FontFace: {
|
|
12411
12636
|
prototype: FontFace;
|
|
12412
|
-
new (family: string, source: string |
|
|
12637
|
+
new (family: string, source: string | BufferSource, descriptors?: FontFaceDescriptors): FontFace;
|
|
12413
12638
|
};
|
|
12414
12639
|
FontFaceSet: {
|
|
12415
12640
|
prototype: FontFaceSet;
|
|
12416
|
-
new (
|
|
12641
|
+
new (): FontFaceSet;
|
|
12417
12642
|
};
|
|
12418
12643
|
FontFaceSetLoadEvent: {
|
|
12419
12644
|
prototype: FontFaceSetLoadEvent;
|
|
@@ -12427,6 +12652,10 @@ declare class Pops {
|
|
|
12427
12652
|
prototype: FormDataEvent;
|
|
12428
12653
|
new (type: string, eventInitDict: FormDataEventInit): FormDataEvent;
|
|
12429
12654
|
};
|
|
12655
|
+
FragmentDirective: {
|
|
12656
|
+
prototype: FragmentDirective;
|
|
12657
|
+
new (): FragmentDirective;
|
|
12658
|
+
};
|
|
12430
12659
|
GainNode: {
|
|
12431
12660
|
prototype: GainNode;
|
|
12432
12661
|
new (context: BaseAudioContext, options?: GainOptions): GainNode;
|
|
@@ -12873,6 +13102,19 @@ declare class Pops {
|
|
|
12873
13102
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
12874
13103
|
new (data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
12875
13104
|
};
|
|
13105
|
+
ImageDecoder: {
|
|
13106
|
+
prototype: ImageDecoder;
|
|
13107
|
+
new (init: ImageDecoderInit): ImageDecoder;
|
|
13108
|
+
isTypeSupported(type: string): Promise<boolean>;
|
|
13109
|
+
};
|
|
13110
|
+
ImageTrack: {
|
|
13111
|
+
prototype: ImageTrack;
|
|
13112
|
+
new (): ImageTrack;
|
|
13113
|
+
};
|
|
13114
|
+
ImageTrackList: {
|
|
13115
|
+
prototype: ImageTrackList;
|
|
13116
|
+
new (): ImageTrackList;
|
|
13117
|
+
};
|
|
12876
13118
|
InputDeviceInfo: {
|
|
12877
13119
|
prototype: InputDeviceInfo;
|
|
12878
13120
|
new (): InputDeviceInfo;
|
|
@@ -12887,7 +13129,7 @@ declare class Pops {
|
|
|
12887
13129
|
};
|
|
12888
13130
|
IntersectionObserverEntry: {
|
|
12889
13131
|
prototype: IntersectionObserverEntry;
|
|
12890
|
-
new (
|
|
13132
|
+
new (): IntersectionObserverEntry;
|
|
12891
13133
|
};
|
|
12892
13134
|
KeyboardEvent: {
|
|
12893
13135
|
prototype: KeyboardEvent;
|
|
@@ -13083,13 +13325,6 @@ declare class Pops {
|
|
|
13083
13325
|
prototype: MouseEvent;
|
|
13084
13326
|
new (type: string, eventInitDict?: MouseEventInit): MouseEvent;
|
|
13085
13327
|
};
|
|
13086
|
-
MutationEvent: {
|
|
13087
|
-
prototype: MutationEvent;
|
|
13088
|
-
new (): MutationEvent;
|
|
13089
|
-
readonly MODIFICATION: 1;
|
|
13090
|
-
readonly ADDITION: 2;
|
|
13091
|
-
readonly REMOVAL: 3;
|
|
13092
|
-
};
|
|
13093
13328
|
MutationObserver: {
|
|
13094
13329
|
prototype: MutationObserver;
|
|
13095
13330
|
new (callback: MutationCallback): MutationObserver;
|
|
@@ -13102,6 +13337,14 @@ declare class Pops {
|
|
|
13102
13337
|
prototype: NamedNodeMap;
|
|
13103
13338
|
new (): NamedNodeMap;
|
|
13104
13339
|
};
|
|
13340
|
+
NavigationActivation: {
|
|
13341
|
+
prototype: NavigationActivation;
|
|
13342
|
+
new (): NavigationActivation;
|
|
13343
|
+
};
|
|
13344
|
+
NavigationHistoryEntry: {
|
|
13345
|
+
prototype: NavigationHistoryEntry;
|
|
13346
|
+
new (): NavigationHistoryEntry;
|
|
13347
|
+
};
|
|
13105
13348
|
NavigationPreloadManager: {
|
|
13106
13349
|
prototype: NavigationPreloadManager;
|
|
13107
13350
|
new (): NavigationPreloadManager;
|
|
@@ -13171,6 +13414,14 @@ declare class Pops {
|
|
|
13171
13414
|
prototype: OverconstrainedError;
|
|
13172
13415
|
new (constraint: string, message?: string): OverconstrainedError;
|
|
13173
13416
|
};
|
|
13417
|
+
PageRevealEvent: {
|
|
13418
|
+
prototype: PageRevealEvent;
|
|
13419
|
+
new (type: string, eventInitDict?: PageRevealEventInit): PageRevealEvent;
|
|
13420
|
+
};
|
|
13421
|
+
PageSwapEvent: {
|
|
13422
|
+
prototype: PageSwapEvent;
|
|
13423
|
+
new (type: string, eventInitDict?: PageSwapEventInit): PageSwapEvent;
|
|
13424
|
+
};
|
|
13174
13425
|
PageTransitionEvent: {
|
|
13175
13426
|
prototype: PageTransitionEvent;
|
|
13176
13427
|
new (type: string, eventInitDict?: PageTransitionEventInit): PageTransitionEvent;
|
|
@@ -13183,13 +13434,17 @@ declare class Pops {
|
|
|
13183
13434
|
prototype: Path2D;
|
|
13184
13435
|
new (path?: Path2D | string): Path2D;
|
|
13185
13436
|
};
|
|
13437
|
+
PaymentAddress: {
|
|
13438
|
+
prototype: PaymentAddress;
|
|
13439
|
+
new (): PaymentAddress;
|
|
13440
|
+
};
|
|
13186
13441
|
PaymentMethodChangeEvent: {
|
|
13187
13442
|
prototype: PaymentMethodChangeEvent;
|
|
13188
13443
|
new (type: string, eventInitDict?: PaymentMethodChangeEventInit): PaymentMethodChangeEvent;
|
|
13189
13444
|
};
|
|
13190
13445
|
PaymentRequest: {
|
|
13191
13446
|
prototype: PaymentRequest;
|
|
13192
|
-
new (methodData: PaymentMethodData[], details: PaymentDetailsInit): PaymentRequest;
|
|
13447
|
+
new (methodData: PaymentMethodData[], details: PaymentDetailsInit, options?: PaymentOptions): PaymentRequest;
|
|
13193
13448
|
};
|
|
13194
13449
|
PaymentRequestUpdateEvent: {
|
|
13195
13450
|
prototype: PaymentRequestUpdateEvent;
|
|
@@ -13307,8 +13562,11 @@ declare class Pops {
|
|
|
13307
13562
|
PublicKeyCredential: {
|
|
13308
13563
|
prototype: PublicKeyCredential;
|
|
13309
13564
|
new (): PublicKeyCredential;
|
|
13565
|
+
getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
|
|
13310
13566
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
13311
13567
|
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
|
|
13568
|
+
parseCreationOptionsFromJSON(options: PublicKeyCredentialCreationOptionsJSON): PublicKeyCredentialCreationOptions;
|
|
13569
|
+
parseRequestOptionsFromJSON(options: PublicKeyCredentialRequestOptionsJSON): PublicKeyCredentialRequestOptions;
|
|
13312
13570
|
};
|
|
13313
13571
|
PushManager: {
|
|
13314
13572
|
prototype: PushManager;
|
|
@@ -13444,7 +13702,7 @@ declare class Pops {
|
|
|
13444
13702
|
};
|
|
13445
13703
|
ReadableStreamBYOBReader: {
|
|
13446
13704
|
prototype: ReadableStreamBYOBReader;
|
|
13447
|
-
new (stream: ReadableStream): ReadableStreamBYOBReader;
|
|
13705
|
+
new (stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
|
|
13448
13706
|
};
|
|
13449
13707
|
ReadableStreamBYOBRequest: {
|
|
13450
13708
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -14253,6 +14511,10 @@ declare class Pops {
|
|
|
14253
14511
|
prototype: ViewTransition;
|
|
14254
14512
|
new (): ViewTransition;
|
|
14255
14513
|
};
|
|
14514
|
+
ViewTransitionTypeSet: {
|
|
14515
|
+
prototype: ViewTransitionTypeSet;
|
|
14516
|
+
new (): ViewTransitionTypeSet;
|
|
14517
|
+
};
|
|
14256
14518
|
VisualViewport: {
|
|
14257
14519
|
prototype: VisualViewport;
|
|
14258
14520
|
new (): VisualViewport;
|
|
@@ -15592,7 +15854,7 @@ declare class Pops {
|
|
|
15592
15854
|
[x: number]: {
|
|
15593
15855
|
readonly description: string;
|
|
15594
15856
|
readonly enabledPlugin: {
|
|
15595
|
-
[x: number]: any;
|
|
15857
|
+
[x: number]: /*elided*/ any;
|
|
15596
15858
|
readonly description: string;
|
|
15597
15859
|
readonly filename: string;
|
|
15598
15860
|
readonly length: number;
|
|
@@ -15610,7 +15872,12 @@ declare class Pops {
|
|
|
15610
15872
|
readonly pdfViewerEnabled: boolean;
|
|
15611
15873
|
readonly plugins: {
|
|
15612
15874
|
[x: number]: {
|
|
15613
|
-
[x: number]:
|
|
15875
|
+
[x: number]: {
|
|
15876
|
+
readonly description: string;
|
|
15877
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
15878
|
+
readonly suffixes: string;
|
|
15879
|
+
readonly type: string;
|
|
15880
|
+
};
|
|
15614
15881
|
readonly description: string;
|
|
15615
15882
|
readonly filename: string;
|
|
15616
15883
|
readonly length: number;
|
|
@@ -15682,7 +15949,7 @@ declare class Pops {
|
|
|
15682
15949
|
IsSearchProviderInstalled: () => void;
|
|
15683
15950
|
};
|
|
15684
15951
|
frameElement: Element | null;
|
|
15685
|
-
frames: any;
|
|
15952
|
+
frames: /*elided*/ any;
|
|
15686
15953
|
history: {
|
|
15687
15954
|
readonly length: number;
|
|
15688
15955
|
scrollRestoration: ScrollRestoration;
|
|
@@ -15870,7 +16137,7 @@ declare class Pops {
|
|
|
15870
16137
|
[x: number]: {
|
|
15871
16138
|
readonly description: string;
|
|
15872
16139
|
readonly enabledPlugin: {
|
|
15873
|
-
[x: number]: any;
|
|
16140
|
+
[x: number]: /*elided*/ any;
|
|
15874
16141
|
readonly description: string;
|
|
15875
16142
|
readonly filename: string;
|
|
15876
16143
|
readonly length: number;
|
|
@@ -15888,7 +16155,12 @@ declare class Pops {
|
|
|
15888
16155
|
readonly pdfViewerEnabled: boolean;
|
|
15889
16156
|
readonly plugins: {
|
|
15890
16157
|
[x: number]: {
|
|
15891
|
-
[x: number]:
|
|
16158
|
+
[x: number]: {
|
|
16159
|
+
readonly description: string;
|
|
16160
|
+
readonly enabledPlugin: /*elided*/ any;
|
|
16161
|
+
readonly suffixes: string;
|
|
16162
|
+
readonly type: string;
|
|
16163
|
+
};
|
|
15892
16164
|
readonly description: string;
|
|
15893
16165
|
readonly filename: string;
|
|
15894
16166
|
readonly length: number;
|
|
@@ -15919,7 +16191,7 @@ declare class Pops {
|
|
|
15919
16191
|
outerWidth: number;
|
|
15920
16192
|
pageXOffset: number;
|
|
15921
16193
|
pageYOffset: number;
|
|
15922
|
-
parent: any;
|
|
16194
|
+
parent: /*elided*/ any;
|
|
15923
16195
|
personalbar: {
|
|
15924
16196
|
readonly visible: boolean;
|
|
15925
16197
|
};
|
|
@@ -15955,7 +16227,7 @@ declare class Pops {
|
|
|
15955
16227
|
scrollbars: {
|
|
15956
16228
|
readonly visible: boolean;
|
|
15957
16229
|
};
|
|
15958
|
-
self: any;
|
|
16230
|
+
self: /*elided*/ any;
|
|
15959
16231
|
speechSynthesis: {
|
|
15960
16232
|
onvoiceschanged: ((this: SpeechSynthesis, ev: Event) => any) | null;
|
|
15961
16233
|
readonly paused: boolean;
|
|
@@ -15983,7 +16255,7 @@ declare class Pops {
|
|
|
15983
16255
|
toolbar: {
|
|
15984
16256
|
readonly visible: boolean;
|
|
15985
16257
|
};
|
|
15986
|
-
top: any | null;
|
|
16258
|
+
top: /*elided*/ any | null;
|
|
15987
16259
|
visualViewport: {
|
|
15988
16260
|
readonly height: number;
|
|
15989
16261
|
readonly offsetLeft: number;
|
|
@@ -16004,7 +16276,7 @@ declare class Pops {
|
|
|
16004
16276
|
};
|
|
16005
16277
|
dispatchEvent: (event: Event) => boolean;
|
|
16006
16278
|
} | null;
|
|
16007
|
-
window: any;
|
|
16279
|
+
window: /*elided*/ any;
|
|
16008
16280
|
onabort: ((this: Window, ev: UIEvent) => any) | null;
|
|
16009
16281
|
onanimationcancel: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
16010
16282
|
onanimationend: ((this: Window, ev: AnimationEvent) => any) | null;
|
|
@@ -16115,7 +16387,9 @@ declare class Pops {
|
|
|
16115
16387
|
onoffline: ((this: Window, ev: Event) => any) | null;
|
|
16116
16388
|
ononline: ((this: Window, ev: Event) => any) | null;
|
|
16117
16389
|
onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
16390
|
+
onpagereveal: ((this: Window, ev: Event) => any) | null;
|
|
16118
16391
|
onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
|
|
16392
|
+
onpageswap: ((this: Window, ev: Event) => any) | null;
|
|
16119
16393
|
onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
|
|
16120
16394
|
onrejectionhandled: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
|
|
16121
16395
|
onstorage: ((this: Window, ev: StorageEvent) => any) | null;
|
|
@@ -16141,7 +16415,7 @@ declare class Pops {
|
|
|
16141
16415
|
crypto: {
|
|
16142
16416
|
readonly subtle: {
|
|
16143
16417
|
decrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
16144
|
-
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length
|
|
16418
|
+
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null) => Promise<ArrayBuffer>;
|
|
16145
16419
|
deriveKey: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]) => Promise<CryptoKey>;
|
|
16146
16420
|
digest: (algorithm: AlgorithmIdentifier, data: BufferSource) => Promise<ArrayBuffer>;
|
|
16147
16421
|
encrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
@@ -16151,7 +16425,9 @@ declare class Pops {
|
|
|
16151
16425
|
(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
|
|
16152
16426
|
};
|
|
16153
16427
|
generateKey: {
|
|
16154
|
-
(algorithm: "Ed25519"
|
|
16428
|
+
(algorithm: "Ed25519" | {
|
|
16429
|
+
name: "Ed25519";
|
|
16430
|
+
}, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
|
|
16155
16431
|
(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
|
|
16156
16432
|
(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
|
|
16157
16433
|
(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
|
|
@@ -16269,49 +16545,49 @@ declare class Pops {
|
|
|
16269
16545
|
SharedArrayBuffer: SharedArrayBufferConstructor;
|
|
16270
16546
|
Atomics: {
|
|
16271
16547
|
add: {
|
|
16272
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16273
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16548
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16549
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16274
16550
|
};
|
|
16275
16551
|
and: {
|
|
16276
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16277
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16552
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16553
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16278
16554
|
};
|
|
16279
16555
|
compareExchange: {
|
|
16280
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16281
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16556
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, expectedValue: number, replacementValue: number): number;
|
|
16557
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, expectedValue: bigint, replacementValue: bigint): bigint;
|
|
16282
16558
|
};
|
|
16283
16559
|
exchange: {
|
|
16284
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16285
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16560
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16561
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16286
16562
|
};
|
|
16287
16563
|
isLockFree: (size: number) => boolean;
|
|
16288
16564
|
load: {
|
|
16289
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16290
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16565
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number): number;
|
|
16566
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number): bigint;
|
|
16291
16567
|
};
|
|
16292
16568
|
or: {
|
|
16293
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16294
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16569
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16570
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16295
16571
|
};
|
|
16296
16572
|
store: {
|
|
16297
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16298
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16573
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16574
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16299
16575
|
};
|
|
16300
16576
|
sub: {
|
|
16301
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16302
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16577
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16578
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16303
16579
|
};
|
|
16304
16580
|
wait: {
|
|
16305
|
-
(typedArray: Int32Array
|
|
16306
|
-
(typedArray: BigInt64Array
|
|
16581
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
16582
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
16307
16583
|
};
|
|
16308
16584
|
notify: {
|
|
16309
|
-
(typedArray: Int32Array
|
|
16310
|
-
(typedArray: BigInt64Array
|
|
16585
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
16586
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
16311
16587
|
};
|
|
16312
16588
|
xor: {
|
|
16313
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
16314
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
16589
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
16590
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
16315
16591
|
};
|
|
16316
16592
|
waitAsync: {
|
|
16317
16593
|
(typedArray: Int32Array, index: number, value: number, timeout?: number): {
|
|
@@ -16340,7 +16616,8 @@ declare class Pops {
|
|
|
16340
16616
|
SuppressedError: SuppressedErrorConstructor;
|
|
16341
16617
|
DisposableStack: DisposableStackConstructor;
|
|
16342
16618
|
AsyncDisposableStack: AsyncDisposableStackConstructor;
|
|
16343
|
-
|
|
16619
|
+
Float16Array: Float16ArrayConstructor;
|
|
16620
|
+
unsafeWindow: /*elided*/ any;
|
|
16344
16621
|
undefined: undefined;
|
|
16345
16622
|
};
|
|
16346
16623
|
eval: typeof eval;
|
|
@@ -16406,6 +16683,7 @@ declare class Pops {
|
|
|
16406
16683
|
trunc: (x: number) => number;
|
|
16407
16684
|
fround: (x: number) => number;
|
|
16408
16685
|
cbrt: (x: number) => number;
|
|
16686
|
+
f16round: (x: number) => number;
|
|
16409
16687
|
readonly [Symbol.toStringTag]: string;
|
|
16410
16688
|
};
|
|
16411
16689
|
Date: DateConstructor;
|
|
@@ -16544,10 +16822,24 @@ declare class Pops {
|
|
|
16544
16822
|
prototype: AudioContext;
|
|
16545
16823
|
new (contextOptions?: AudioContextOptions): AudioContext;
|
|
16546
16824
|
};
|
|
16825
|
+
AudioData: {
|
|
16826
|
+
prototype: AudioData;
|
|
16827
|
+
new (init: AudioDataInit): AudioData;
|
|
16828
|
+
};
|
|
16829
|
+
AudioDecoder: {
|
|
16830
|
+
prototype: AudioDecoder;
|
|
16831
|
+
new (init: AudioDecoderInit): AudioDecoder;
|
|
16832
|
+
isConfigSupported(config: AudioDecoderConfig): Promise<AudioDecoderSupport>;
|
|
16833
|
+
};
|
|
16547
16834
|
AudioDestinationNode: {
|
|
16548
16835
|
prototype: AudioDestinationNode;
|
|
16549
16836
|
new (): AudioDestinationNode;
|
|
16550
16837
|
};
|
|
16838
|
+
AudioEncoder: {
|
|
16839
|
+
prototype: AudioEncoder;
|
|
16840
|
+
new (init: AudioEncoderInit): AudioEncoder;
|
|
16841
|
+
isConfigSupported(config: AudioEncoderConfig): Promise<AudioEncoderSupport>;
|
|
16842
|
+
};
|
|
16551
16843
|
AudioListener: {
|
|
16552
16844
|
prototype: AudioListener;
|
|
16553
16845
|
new (): AudioListener;
|
|
@@ -16732,6 +17024,10 @@ declare class Pops {
|
|
|
16732
17024
|
prototype: CSSNamespaceRule;
|
|
16733
17025
|
new (): CSSNamespaceRule;
|
|
16734
17026
|
};
|
|
17027
|
+
CSSNestedDeclarations: {
|
|
17028
|
+
prototype: CSSNestedDeclarations;
|
|
17029
|
+
new (): CSSNestedDeclarations;
|
|
17030
|
+
};
|
|
16735
17031
|
CSSNumericArray: {
|
|
16736
17032
|
prototype: CSSNumericArray;
|
|
16737
17033
|
new (): CSSNumericArray;
|
|
@@ -16852,6 +17148,10 @@ declare class Pops {
|
|
|
16852
17148
|
prototype: CSSVariableReferenceValue;
|
|
16853
17149
|
new (variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
|
|
16854
17150
|
};
|
|
17151
|
+
CSSViewTransitionRule: {
|
|
17152
|
+
prototype: CSSViewTransitionRule;
|
|
17153
|
+
new (): CSSViewTransitionRule;
|
|
17154
|
+
};
|
|
16855
17155
|
Cache: {
|
|
16856
17156
|
prototype: Cache;
|
|
16857
17157
|
new (): Cache;
|
|
@@ -16876,6 +17176,10 @@ declare class Pops {
|
|
|
16876
17176
|
prototype: CanvasRenderingContext2D;
|
|
16877
17177
|
new (): CanvasRenderingContext2D;
|
|
16878
17178
|
};
|
|
17179
|
+
CaretPosition: {
|
|
17180
|
+
prototype: CaretPosition;
|
|
17181
|
+
new (): CaretPosition;
|
|
17182
|
+
};
|
|
16879
17183
|
ChannelMergerNode: {
|
|
16880
17184
|
prototype: ChannelMergerNode;
|
|
16881
17185
|
new (context: BaseAudioContext, options?: ChannelMergerOptions): ChannelMergerNode;
|
|
@@ -17119,6 +17423,10 @@ declare class Pops {
|
|
|
17119
17423
|
prototype: ElementInternals;
|
|
17120
17424
|
new (): ElementInternals;
|
|
17121
17425
|
};
|
|
17426
|
+
EncodedAudioChunk: {
|
|
17427
|
+
prototype: EncodedAudioChunk;
|
|
17428
|
+
new (init: EncodedAudioChunkInit): EncodedAudioChunk;
|
|
17429
|
+
};
|
|
17122
17430
|
EncodedVideoChunk: {
|
|
17123
17431
|
prototype: EncodedVideoChunk;
|
|
17124
17432
|
new (init: EncodedVideoChunkInit): EncodedVideoChunk;
|
|
@@ -17211,11 +17519,11 @@ declare class Pops {
|
|
|
17211
17519
|
};
|
|
17212
17520
|
FontFace: {
|
|
17213
17521
|
prototype: FontFace;
|
|
17214
|
-
new (family: string, source: string |
|
|
17522
|
+
new (family: string, source: string | BufferSource, descriptors?: FontFaceDescriptors): FontFace;
|
|
17215
17523
|
};
|
|
17216
17524
|
FontFaceSet: {
|
|
17217
17525
|
prototype: FontFaceSet;
|
|
17218
|
-
new (
|
|
17526
|
+
new (): FontFaceSet;
|
|
17219
17527
|
};
|
|
17220
17528
|
FontFaceSetLoadEvent: {
|
|
17221
17529
|
prototype: FontFaceSetLoadEvent;
|
|
@@ -17229,6 +17537,10 @@ declare class Pops {
|
|
|
17229
17537
|
prototype: FormDataEvent;
|
|
17230
17538
|
new (type: string, eventInitDict: FormDataEventInit): FormDataEvent;
|
|
17231
17539
|
};
|
|
17540
|
+
FragmentDirective: {
|
|
17541
|
+
prototype: FragmentDirective;
|
|
17542
|
+
new (): FragmentDirective;
|
|
17543
|
+
};
|
|
17232
17544
|
GainNode: {
|
|
17233
17545
|
prototype: GainNode;
|
|
17234
17546
|
new (context: BaseAudioContext, options?: GainOptions): GainNode;
|
|
@@ -17675,6 +17987,19 @@ declare class Pops {
|
|
|
17675
17987
|
new (sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
|
17676
17988
|
new (data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
|
|
17677
17989
|
};
|
|
17990
|
+
ImageDecoder: {
|
|
17991
|
+
prototype: ImageDecoder;
|
|
17992
|
+
new (init: ImageDecoderInit): ImageDecoder;
|
|
17993
|
+
isTypeSupported(type: string): Promise<boolean>;
|
|
17994
|
+
};
|
|
17995
|
+
ImageTrack: {
|
|
17996
|
+
prototype: ImageTrack;
|
|
17997
|
+
new (): ImageTrack;
|
|
17998
|
+
};
|
|
17999
|
+
ImageTrackList: {
|
|
18000
|
+
prototype: ImageTrackList;
|
|
18001
|
+
new (): ImageTrackList;
|
|
18002
|
+
};
|
|
17678
18003
|
InputDeviceInfo: {
|
|
17679
18004
|
prototype: InputDeviceInfo;
|
|
17680
18005
|
new (): InputDeviceInfo;
|
|
@@ -17689,7 +18014,7 @@ declare class Pops {
|
|
|
17689
18014
|
};
|
|
17690
18015
|
IntersectionObserverEntry: {
|
|
17691
18016
|
prototype: IntersectionObserverEntry;
|
|
17692
|
-
new (
|
|
18017
|
+
new (): IntersectionObserverEntry;
|
|
17693
18018
|
};
|
|
17694
18019
|
KeyboardEvent: {
|
|
17695
18020
|
prototype: KeyboardEvent;
|
|
@@ -17885,13 +18210,6 @@ declare class Pops {
|
|
|
17885
18210
|
prototype: MouseEvent;
|
|
17886
18211
|
new (type: string, eventInitDict?: MouseEventInit): MouseEvent;
|
|
17887
18212
|
};
|
|
17888
|
-
MutationEvent: {
|
|
17889
|
-
prototype: MutationEvent;
|
|
17890
|
-
new (): MutationEvent;
|
|
17891
|
-
readonly MODIFICATION: 1;
|
|
17892
|
-
readonly ADDITION: 2;
|
|
17893
|
-
readonly REMOVAL: 3;
|
|
17894
|
-
};
|
|
17895
18213
|
MutationObserver: {
|
|
17896
18214
|
prototype: MutationObserver;
|
|
17897
18215
|
new (callback: MutationCallback): MutationObserver;
|
|
@@ -17904,6 +18222,14 @@ declare class Pops {
|
|
|
17904
18222
|
prototype: NamedNodeMap;
|
|
17905
18223
|
new (): NamedNodeMap;
|
|
17906
18224
|
};
|
|
18225
|
+
NavigationActivation: {
|
|
18226
|
+
prototype: NavigationActivation;
|
|
18227
|
+
new (): NavigationActivation;
|
|
18228
|
+
};
|
|
18229
|
+
NavigationHistoryEntry: {
|
|
18230
|
+
prototype: NavigationHistoryEntry;
|
|
18231
|
+
new (): NavigationHistoryEntry;
|
|
18232
|
+
};
|
|
17907
18233
|
NavigationPreloadManager: {
|
|
17908
18234
|
prototype: NavigationPreloadManager;
|
|
17909
18235
|
new (): NavigationPreloadManager;
|
|
@@ -17973,6 +18299,14 @@ declare class Pops {
|
|
|
17973
18299
|
prototype: OverconstrainedError;
|
|
17974
18300
|
new (constraint: string, message?: string): OverconstrainedError;
|
|
17975
18301
|
};
|
|
18302
|
+
PageRevealEvent: {
|
|
18303
|
+
prototype: PageRevealEvent;
|
|
18304
|
+
new (type: string, eventInitDict?: PageRevealEventInit): PageRevealEvent;
|
|
18305
|
+
};
|
|
18306
|
+
PageSwapEvent: {
|
|
18307
|
+
prototype: PageSwapEvent;
|
|
18308
|
+
new (type: string, eventInitDict?: PageSwapEventInit): PageSwapEvent;
|
|
18309
|
+
};
|
|
17976
18310
|
PageTransitionEvent: {
|
|
17977
18311
|
prototype: PageTransitionEvent;
|
|
17978
18312
|
new (type: string, eventInitDict?: PageTransitionEventInit): PageTransitionEvent;
|
|
@@ -17985,13 +18319,17 @@ declare class Pops {
|
|
|
17985
18319
|
prototype: Path2D;
|
|
17986
18320
|
new (path?: Path2D | string): Path2D;
|
|
17987
18321
|
};
|
|
18322
|
+
PaymentAddress: {
|
|
18323
|
+
prototype: PaymentAddress;
|
|
18324
|
+
new (): PaymentAddress;
|
|
18325
|
+
};
|
|
17988
18326
|
PaymentMethodChangeEvent: {
|
|
17989
18327
|
prototype: PaymentMethodChangeEvent;
|
|
17990
18328
|
new (type: string, eventInitDict?: PaymentMethodChangeEventInit): PaymentMethodChangeEvent;
|
|
17991
18329
|
};
|
|
17992
18330
|
PaymentRequest: {
|
|
17993
18331
|
prototype: PaymentRequest;
|
|
17994
|
-
new (methodData: PaymentMethodData[], details: PaymentDetailsInit): PaymentRequest;
|
|
18332
|
+
new (methodData: PaymentMethodData[], details: PaymentDetailsInit, options?: PaymentOptions): PaymentRequest;
|
|
17995
18333
|
};
|
|
17996
18334
|
PaymentRequestUpdateEvent: {
|
|
17997
18335
|
prototype: PaymentRequestUpdateEvent;
|
|
@@ -18109,8 +18447,11 @@ declare class Pops {
|
|
|
18109
18447
|
PublicKeyCredential: {
|
|
18110
18448
|
prototype: PublicKeyCredential;
|
|
18111
18449
|
new (): PublicKeyCredential;
|
|
18450
|
+
getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
|
|
18112
18451
|
isConditionalMediationAvailable(): Promise<boolean>;
|
|
18113
18452
|
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
|
|
18453
|
+
parseCreationOptionsFromJSON(options: PublicKeyCredentialCreationOptionsJSON): PublicKeyCredentialCreationOptions;
|
|
18454
|
+
parseRequestOptionsFromJSON(options: PublicKeyCredentialRequestOptionsJSON): PublicKeyCredentialRequestOptions;
|
|
18114
18455
|
};
|
|
18115
18456
|
PushManager: {
|
|
18116
18457
|
prototype: PushManager;
|
|
@@ -18246,7 +18587,7 @@ declare class Pops {
|
|
|
18246
18587
|
};
|
|
18247
18588
|
ReadableStreamBYOBReader: {
|
|
18248
18589
|
prototype: ReadableStreamBYOBReader;
|
|
18249
|
-
new (stream: ReadableStream): ReadableStreamBYOBReader;
|
|
18590
|
+
new (stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
|
|
18250
18591
|
};
|
|
18251
18592
|
ReadableStreamBYOBRequest: {
|
|
18252
18593
|
prototype: ReadableStreamBYOBRequest;
|
|
@@ -19055,6 +19396,10 @@ declare class Pops {
|
|
|
19055
19396
|
prototype: ViewTransition;
|
|
19056
19397
|
new (): ViewTransition;
|
|
19057
19398
|
};
|
|
19399
|
+
ViewTransitionTypeSet: {
|
|
19400
|
+
prototype: ViewTransitionTypeSet;
|
|
19401
|
+
new (): ViewTransitionTypeSet;
|
|
19402
|
+
};
|
|
19058
19403
|
VisualViewport: {
|
|
19059
19404
|
prototype: VisualViewport;
|
|
19060
19405
|
new (): VisualViewport;
|
|
@@ -20271,49 +20616,49 @@ declare class Pops {
|
|
|
20271
20616
|
SharedArrayBuffer: SharedArrayBufferConstructor;
|
|
20272
20617
|
Atomics: {
|
|
20273
20618
|
add: {
|
|
20274
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20275
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20619
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20620
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20276
20621
|
};
|
|
20277
20622
|
and: {
|
|
20278
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20279
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20623
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20624
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20280
20625
|
};
|
|
20281
20626
|
compareExchange: {
|
|
20282
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20283
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20627
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, expectedValue: number, replacementValue: number): number;
|
|
20628
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, expectedValue: bigint, replacementValue: bigint): bigint;
|
|
20284
20629
|
};
|
|
20285
20630
|
exchange: {
|
|
20286
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20287
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20631
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20632
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20288
20633
|
};
|
|
20289
20634
|
isLockFree: (size: number) => boolean;
|
|
20290
20635
|
load: {
|
|
20291
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20292
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20636
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number): number;
|
|
20637
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number): bigint;
|
|
20293
20638
|
};
|
|
20294
20639
|
or: {
|
|
20295
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20296
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20640
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20641
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20297
20642
|
};
|
|
20298
20643
|
store: {
|
|
20299
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20300
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20644
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20645
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20301
20646
|
};
|
|
20302
20647
|
sub: {
|
|
20303
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20304
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20648
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20649
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20305
20650
|
};
|
|
20306
20651
|
wait: {
|
|
20307
|
-
(typedArray: Int32Array
|
|
20308
|
-
(typedArray: BigInt64Array
|
|
20652
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
20653
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out";
|
|
20309
20654
|
};
|
|
20310
20655
|
notify: {
|
|
20311
|
-
(typedArray: Int32Array
|
|
20312
|
-
(typedArray: BigInt64Array
|
|
20656
|
+
(typedArray: Int32Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
20657
|
+
(typedArray: BigInt64Array<ArrayBufferLike>, index: number, count?: number): number;
|
|
20313
20658
|
};
|
|
20314
20659
|
xor: {
|
|
20315
|
-
(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array
|
|
20316
|
-
(typedArray: BigInt64Array | BigUint64Array
|
|
20660
|
+
(typedArray: Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>, index: number, value: number): number;
|
|
20661
|
+
(typedArray: BigInt64Array<ArrayBufferLike> | BigUint64Array<ArrayBufferLike>, index: number, value: bigint): bigint;
|
|
20317
20662
|
};
|
|
20318
20663
|
waitAsync: {
|
|
20319
20664
|
(typedArray: Int32Array, index: number, value: number, timeout?: number): {
|
|
@@ -20342,7 +20687,8 @@ declare class Pops {
|
|
|
20342
20687
|
SuppressedError: SuppressedErrorConstructor;
|
|
20343
20688
|
DisposableStack: DisposableStackConstructor;
|
|
20344
20689
|
AsyncDisposableStack: AsyncDisposableStackConstructor;
|
|
20345
|
-
|
|
20690
|
+
Float16Array: Float16ArrayConstructor;
|
|
20691
|
+
unsafeWindow: /*elided*/ any;
|
|
20346
20692
|
undefined: undefined;
|
|
20347
20693
|
};
|
|
20348
20694
|
alert: (message?: any) => void;
|
|
@@ -20502,7 +20848,9 @@ declare class Pops {
|
|
|
20502
20848
|
onoffline: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20503
20849
|
ononline: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20504
20850
|
onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
|
|
20851
|
+
onpagereveal: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20505
20852
|
onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
|
|
20853
|
+
onpageswap: ((this: WindowEventHandlers, ev: Event) => any) | null;
|
|
20506
20854
|
onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;
|
|
20507
20855
|
onrejectionhandled: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
|
|
20508
20856
|
onstorage: ((this: WindowEventHandlers, ev: StorageEvent) => any) | null;
|
|
@@ -20528,7 +20876,7 @@ declare class Pops {
|
|
|
20528
20876
|
readonly crypto: {
|
|
20529
20877
|
readonly subtle: {
|
|
20530
20878
|
decrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
20531
|
-
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length
|
|
20879
|
+
deriveBits: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null) => Promise<ArrayBuffer>;
|
|
20532
20880
|
deriveKey: (algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]) => Promise<CryptoKey>;
|
|
20533
20881
|
digest: (algorithm: AlgorithmIdentifier, data: BufferSource) => Promise<ArrayBuffer>;
|
|
20534
20882
|
encrypt: (algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource) => Promise<ArrayBuffer>;
|
|
@@ -20538,7 +20886,9 @@ declare class Pops {
|
|
|
20538
20886
|
(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
|
|
20539
20887
|
};
|
|
20540
20888
|
generateKey: {
|
|
20541
|
-
(algorithm: "Ed25519"
|
|
20889
|
+
(algorithm: "Ed25519" | {
|
|
20890
|
+
name: "Ed25519";
|
|
20891
|
+
}, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
|
|
20542
20892
|
(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
|
|
20543
20893
|
(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
|
|
20544
20894
|
(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
|
|
@@ -20653,7 +21003,7 @@ declare class Pops {
|
|
|
20653
21003
|
iconIsLoading: boolean;
|
|
20654
21004
|
text: string | (() => string);
|
|
20655
21005
|
callback: (clickEvent: PointerEvent, contextMenuEvent: PointerEvent, liElement: HTMLLIElement) => boolean | void | Promise<boolean | void>;
|
|
20656
|
-
item: any[] | null;
|
|
21006
|
+
item: /*elided*/ any[] | null;
|
|
20657
21007
|
}[];
|
|
20658
21008
|
className: string;
|
|
20659
21009
|
isAnimation: boolean;
|