@@ -1101,7 +1101,10 @@ interface MediaTrackSettings {
11011101 noiseSuppression?: boolean;
11021102 sampleRate?: number;
11031103 sampleSize?: number;
1104+ torch?: boolean;
1105+ whiteBalanceMode?: string;
11041106 width?: number;
1107+ zoom?: number;
11051108}
11061109
11071110interface MediaTrackSupportedConstraints {
@@ -1709,6 +1712,9 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
17091712 trackIdentifier: string;
17101713}
17111714
1715+ interface RTCLocalIceCandidateInit extends RTCIceCandidateInit {
1716+ }
1717+
17121718interface RTCLocalSessionDescriptionInit {
17131719 sdp?: string;
17141720 type?: RTCSdpType;
@@ -15275,7 +15281,7 @@ interface ImageData {
1527515281 *
1527615282 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageData/data)
1527715283 */
15278- readonly data: Uint8ClampedArray ;
15284+ readonly data: ImageDataArray ;
1527915285 /**
1528015286 * Returns the actual dimensions of the data in the ImageData object, in pixels.
1528115287 *
@@ -15293,7 +15299,7 @@ interface ImageData {
1529315299declare var ImageData: {
1529415300 prototype: ImageData;
1529515301 new(sw: number, sh: number, settings?: ImageDataSettings): ImageData;
15296- new(data: Uint8ClampedArray , sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
15302+ new(data: ImageDataArray , sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
1529715303};
1529815304
1529915305/**
@@ -19247,7 +19253,7 @@ interface RTCIceCandidate {
1924719253
1924819254declare var RTCIceCandidate: {
1924919255 prototype: RTCIceCandidate;
19250- new(candidateInitDict?: RTCIceCandidateInit ): RTCIceCandidate;
19256+ new(candidateInitDict?: RTCLocalIceCandidateInit ): RTCIceCandidate;
1925119257};
1925219258
1925319259interface RTCIceCandidatePair {
@@ -29674,6 +29680,7 @@ type HeadersInit = [string, string][] | Record<string, string> | Headers;
2967429680type IDBValidKey = number | string | Date | BufferSource | IDBValidKey[];
2967529681type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
2967629682type ImageBufferSource = AllowSharedBufferSource | ReadableStream;
29683+ type ImageDataArray = Uint8ClampedArray;
2967729684type Int32List = Int32Array | GLint[];
2967829685type LineAndPositionSetting = number | AutoKeyword;
2967929686type MediaProvider = MediaStream | MediaSource | Blob;
0 commit comments