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