@@ -125,6 +125,10 @@ interface IDBObjectStore {
125
125
createIndex ( name : string , keyPath : string | Iterable < string > , options ?: IDBIndexParameters ) : IDBIndex ;
126
126
}
127
127
128
+ interface MSCredentials {
129
+ makeCredential ( accountInfo : MSAccountInfo , params : Iterable < MSCredentialParameters > , challenge ?: string ) : Promise < MSAssertion > ;
130
+ }
131
+
128
132
interface MediaKeyStatusMap {
129
133
[ Symbol . iterator ] ( ) : IterableIterator < [ BufferSource , MediaKeyStatus ] > ;
130
134
entries ( ) : IterableIterator < [ BufferSource , MediaKeyStatus ] > ;
@@ -188,10 +192,6 @@ interface PluginArray {
188
192
[ Symbol . iterator ] ( ) : IterableIterator < Plugin > ;
189
193
}
190
194
191
- interface RTCRtpTransceiver {
192
- setCodecPreferences ( codecs : Iterable < RTCRtpCodecCapability > ) : void ;
193
- }
194
-
195
195
interface RTCStatsReport extends ReadonlyMap < string , any > {
196
196
}
197
197
@@ -222,18 +222,6 @@ interface SourceBufferList {
222
222
[ Symbol . iterator ] ( ) : IterableIterator < SourceBuffer > ;
223
223
}
224
224
225
- interface SpeechGrammarList {
226
- [ Symbol . iterator ] ( ) : IterableIterator < SpeechGrammar > ;
227
- }
228
-
229
- interface SpeechRecognitionResult {
230
- [ Symbol . iterator ] ( ) : IterableIterator < SpeechRecognitionAlternative > ;
231
- }
232
-
233
- interface SpeechRecognitionResultList {
234
- [ Symbol . iterator ] ( ) : IterableIterator < SpeechRecognitionResult > ;
235
- }
236
-
237
225
interface StyleSheetList {
238
226
[ Symbol . iterator ] ( ) : IterableIterator < CSSStyleSheet > ;
239
227
}
@@ -266,10 +254,6 @@ interface URLSearchParams {
266
254
values ( ) : IterableIterator < string > ;
267
255
}
268
256
269
- interface VRDisplay {
270
- requestPresent ( layers : Iterable < VRLayer > ) : Promise < void > ;
271
- }
272
-
273
257
interface WEBGL_draw_buffers {
274
258
drawBuffersWEBGL ( buffers : Iterable < GLenum > ) : void ;
275
259
}
0 commit comments