@@ -34,10 +34,6 @@ interface CanvasPathDrawingStyles {
34
34
setLineDash ( segments : Iterable < number > ) : void ;
35
35
}
36
36
37
- interface ClientRectList {
38
- [ Symbol . iterator ] ( ) : IterableIterator < ClientRect > ;
39
- }
40
-
41
37
interface DOMRectList {
42
38
[ Symbol . iterator ] ( ) : IterableIterator < DOMRect > ;
43
39
}
@@ -208,6 +204,10 @@ interface SVGStringList {
208
204
[ Symbol . iterator ] ( ) : IterableIterator < string > ;
209
205
}
210
206
207
+ interface SVGTransformList {
208
+ [ Symbol . iterator ] ( ) : IterableIterator < SVGTransform > ;
209
+ }
210
+
211
211
interface SourceBufferList {
212
212
[ Symbol . iterator ] ( ) : IterableIterator < SourceBuffer > ;
213
213
}
@@ -225,7 +225,7 @@ interface SpeechRecognitionResultList {
225
225
}
226
226
227
227
interface StyleSheetList {
228
- [ Symbol . iterator ] ( ) : IterableIterator < StyleSheet > ;
228
+ [ Symbol . iterator ] ( ) : IterableIterator < CSSStyleSheet > ;
229
229
}
230
230
231
231
interface TextTrackCueList {
@@ -257,7 +257,8 @@ interface URLSearchParams {
257
257
}
258
258
259
259
interface VRDisplay {
260
- requestPresent ( layers : Iterable < VRLayer > ) : Promise < void > ;
260
+ /** @deprecated */
261
+ requestPresent ( layers : Iterable < VRLayerInit > ) : Promise < void > ;
261
262
}
262
263
263
264
interface VideoTrackList {
@@ -268,10 +269,6 @@ interface WEBGL_draw_buffers {
268
269
drawBuffersWEBGL ( buffers : Iterable < GLenum > ) : void ;
269
270
}
270
271
271
- interface WebAuthentication {
272
- makeCredential ( accountInformation : Account , cryptoParameters : Iterable < ScopedCredentialParameters > , attestationChallenge : Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null , options ?: ScopedCredentialOptions ) : Promise < ScopedCredentialInfo > ;
273
- }
274
-
275
272
interface WebGL2RenderingContextBase {
276
273
clearBufferfv ( buffer : GLenum , drawbuffer : GLint , values : Iterable < GLfloat > , srcOffset ?: GLuint ) : void ;
277
274
clearBufferiv ( buffer : GLenum , drawbuffer : GLint , values : Iterable < GLint > , srcOffset ?: GLuint ) : void ;
0 commit comments