You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -2043,6 +2049,7 @@ declare var ImageBitmapRenderingContext: {
2043
2049
2044
2050
/** The underlying pixel data of an area of a <canvas> element. It is created using the ImageData() constructor or creator methods on the CanvasRenderingContext2D object associated with a canvas: createImageData() and getImageData(). It can also be used to set a part of the canvas by using putImageData(). */
2045
2051
interfaceImageData{
2052
+
readonlycolorSpace: PredefinedColorSpace;
2046
2053
/** Returns the one-dimensional array containing the data in RGBA order, as integers in the range 0 to 255. */
2047
2054
readonlydata: Uint8ClampedArray;
2048
2055
/** Returns the actual dimensions of the data in the ImageData object, in pixels. */
@@ -1963,6 +1968,7 @@ declare var ImageBitmapRenderingContext: {
1963
1968
1964
1969
/** The underlying pixel data of an area of a <canvas> element. It is created using the ImageData() constructor or creator methods on the CanvasRenderingContext2D object associated with a canvas: createImageData() and getImageData(). It can also be used to set a part of the canvas by using putImageData(). */
1965
1970
interfaceImageData{
1971
+
readonlycolorSpace: PredefinedColorSpace;
1966
1972
/** Returns the one-dimensional array containing the data in RGBA order, as integers in the range 0 to 255. */
1967
1973
readonlydata: Uint8ClampedArray;
1968
1974
/** Returns the actual dimensions of the data in the ImageData object, in pixels. */
@@ -2095,6 +2124,7 @@ declare var ImageBitmapRenderingContext: {
2095
2124
2096
2125
/** The underlying pixel data of an area of a <canvas> element. It is created using the ImageData() constructor or creator methods on the CanvasRenderingContext2D object associated with a canvas: createImageData() and getImageData(). It can also be used to set a part of the canvas by using putImageData(). */
2097
2126
interfaceImageData{
2127
+
readonlycolorSpace: PredefinedColorSpace;
2098
2128
/** Returns the one-dimensional array containing the data in RGBA order, as integers in the range 0 to 255. */
2099
2129
readonlydata: Uint8ClampedArray;
2100
2130
/** Returns the actual dimensions of the data in the ImageData object, in pixels. */
@@ -2211,6 +2241,19 @@ declare var MessagePort: {
2211
2241
new(): MessagePort;
2212
2242
};
2213
2243
2244
+
/** Available only in secure contexts. */
2245
+
interfaceNavigationPreloadManager{
2246
+
disable(): Promise<void>;
2247
+
enable(): Promise<void>;
2248
+
getState(): Promise<NavigationPreloadState>;
2249
+
setHeaderValue(value: string): Promise<void>;
2250
+
}
2251
+
2252
+
declarevarNavigationPreloadManager: {
2253
+
prototype: NavigationPreloadManager;
2254
+
new(): NavigationPreloadManager;
2255
+
};
2256
+
2214
2257
interfaceNavigatorConcurrentHardware{
2215
2258
readonlyhardwareConcurrency: number;
2216
2259
}
@@ -2609,6 +2652,29 @@ declare var PushSubscriptionOptions: {
2609
2652
new(): PushSubscriptionOptions;
2610
2653
};
2611
2654
2655
+
interfaceRTCEncodedAudioFrame{
2656
+
data: ArrayBuffer;
2657
+
readonlytimestamp: number;
2658
+
getMetadata(): RTCEncodedAudioFrameMetadata;
2659
+
}
2660
+
2661
+
declarevarRTCEncodedAudioFrame: {
2662
+
prototype: RTCEncodedAudioFrame;
2663
+
new(): RTCEncodedAudioFrame;
2664
+
};
2665
+
2666
+
interfaceRTCEncodedVideoFrame{
2667
+
data: ArrayBuffer;
2668
+
readonlytimestamp: number;
2669
+
readonlytype: RTCEncodedVideoFrameType;
2670
+
getMetadata(): RTCEncodedVideoFrameMetadata;
2671
+
}
2672
+
2673
+
declarevarRTCEncodedVideoFrame: {
2674
+
prototype: RTCEncodedVideoFrame;
2675
+
new(): RTCEncodedVideoFrame;
2676
+
};
2677
+
2612
2678
/** This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a ReadableStream through the body property of a Response object. */
2613
2679
interfaceReadableStream<R=any>{
2614
2680
readonlylocked: boolean;
@@ -3075,6 +3141,19 @@ declare var URLSearchParams: {
0 commit comments