@@ -1211,6 +1211,7 @@ interface RTCCertificateExpiration {
12111211interface RTCConfiguration {
12121212 bundlePolicy?: RTCBundlePolicy;
12131213 certificates?: RTCCertificate[];
1214+ encodedInsertableStreams?: boolean;
12141215 iceCandidatePoolSize?: number;
12151216 iceServers?: RTCIceServer[];
12161217 iceTransportPolicy?: RTCIceTransportPolicy;
@@ -5414,8 +5415,8 @@ interface GenericTransformStream {
54145415/** An object able to programmatically obtain the position of the device. It gives Web content access to the location of the device. This allows a Web site or app to offer customized results based on the user's location. */
54155416interface Geolocation {
54165417 clearWatch(watchId: number): void;
5417- getCurrentPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): void;
5418- watchPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback, options?: PositionOptions): number;
5418+ getCurrentPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null , options?: PositionOptions): void;
5419+ watchPosition(successCallback: PositionCallback, errorCallback?: PositionErrorCallback | null , options?: PositionOptions): number;
54195420}
54205421
54215422declare var Geolocation: {
@@ -18538,7 +18539,7 @@ type MediaDecodingType = "file" | "media-source" | "webrtc";
1853818539type MediaDeviceKind = "audioinput" | "audiooutput" | "videoinput";
1853918540type MediaEncodingType = "record" | "webrtc";
1854018541type MediaKeyMessageType = "individualization-request" | "license-release" | "license-renewal" | "license-request";
18541- type MediaKeySessionType = "persistent-license" | "persistent-usage-record" | " temporary";
18542+ type MediaKeySessionType = "persistent-license" | "temporary";
1854218543type MediaKeyStatus = "expired" | "internal-error" | "output-downscaled" | "output-restricted" | "released" | "status-pending" | "usable" | "usable-in-future";
1854318544type MediaKeysRequirement = "not-allowed" | "optional" | "required";
1854418545type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
0 commit comments