@@ -1865,30 +1865,25 @@ declare var Window: {
1865
1865
new(): Window;
1866
1866
}
1867
1867
1868
- interface FormData {
1869
- append(name: any, value: any, blobName?: string): void;
1870
- }
1871
- declare var FormData: {
1872
- prototype: FormData;
1873
- new (form?: HTMLFormElement): FormData;
1874
- }
1875
-
1876
- interface SourceBuffer extends EventTarget {
1877
- updating: boolean;
1878
- appendWindowStart: number;
1879
- appendWindowEnd: number;
1880
- buffered: TimeRanges;
1881
- timestampOffset: number;
1882
- audioTracks: AudioTrackList;
1883
- appendBuffer(data: ArrayBufferView): void;
1884
- appendBuffer(data: ArrayBuffer): void;
1885
- remove(start: number, end: number): void;
1886
- abort(): void;
1887
- appendStream(stream: MSStream, maxSize?: number): void;
1868
+ interface HTMLCollection extends MSHTMLCollectionExtensions {
1869
+ /**
1870
+ * Sets or retrieves the number of objects in a collection.
1871
+ */
1872
+ length: number;
1873
+ /**
1874
+ * Retrieves an object from various collections.
1875
+ */
1876
+ item(nameOrIndex?: any, optionalIndex?: any): Element;
1877
+ /**
1878
+ * Retrieves a select object or an object from an options collection.
1879
+ */
1880
+ namedItem(name: string): Element;
1881
+ // [name: string]: Element;
1882
+ [index: number]: Element;
1888
1883
}
1889
- declare var SourceBuffer : {
1890
- prototype: SourceBuffer ;
1891
- new(): SourceBuffer ;
1884
+ declare var HTMLCollection : {
1885
+ prototype: HTMLCollection ;
1886
+ new(): HTMLCollection ;
1892
1887
}
1893
1888
1894
1889
interface NavigatorID {
@@ -3797,26 +3792,6 @@ declare var MSCSSProperties: {
3797
3792
new(): MSCSSProperties;
3798
3793
}
3799
3794
3800
- interface HTMLCollection extends MSHTMLCollectionExtensions {
3801
- /**
3802
- * Sets or retrieves the number of objects in a collection.
3803
- */
3804
- length: number;
3805
- /**
3806
- * Retrieves an object from various collections.
3807
- */
3808
- item(nameOrIndex?: any, optionalIndex?: any): Element;
3809
- /**
3810
- * Retrieves a select object or an object from an options collection.
3811
- */
3812
- namedItem(name: string): Element;
3813
- // [name: string]: Element;
3814
- }
3815
- declare var HTMLCollection: {
3816
- prototype: HTMLCollection;
3817
- new(): HTMLCollection;
3818
- }
3819
-
3820
3795
interface SVGExternalResourcesRequired {
3821
3796
externalResourcesRequired: SVGAnimatedBoolean;
3822
3797
}
@@ -10222,6 +10197,14 @@ declare var MSManipulationEvent: {
10222
10197
MS_MANIPULATION_STATE_CANCELLED: number;
10223
10198
}
10224
10199
10200
+ interface FormData {
10201
+ append(name: any, value: any, blobName?: string): void;
10202
+ }
10203
+ declare var FormData: {
10204
+ prototype: FormData;
10205
+ new(): FormData;
10206
+ }
10207
+
10225
10208
interface HTMLDataListElement extends HTMLElement {
10226
10209
options: HTMLCollection;
10227
10210
}
@@ -10640,6 +10623,23 @@ interface RandomSource {
10640
10623
getRandomValues(array: ArrayBufferView): ArrayBufferView;
10641
10624
}
10642
10625
10626
+ interface SourceBuffer extends EventTarget {
10627
+ updating: boolean;
10628
+ appendWindowStart: number;
10629
+ appendWindowEnd: number;
10630
+ buffered: TimeRanges;
10631
+ timestampOffset: number;
10632
+ audioTracks: AudioTrackList;
10633
+ appendBuffer(data: ArrayBuffer): void;
10634
+ remove(start: number, end: number): void;
10635
+ abort(): void;
10636
+ appendStream(stream: MSStream, maxSize?: number): void;
10637
+ }
10638
+ declare var SourceBuffer: {
10639
+ prototype: SourceBuffer;
10640
+ new(): SourceBuffer;
10641
+ }
10642
+
10643
10643
interface MSInputMethodContext extends EventTarget {
10644
10644
oncandidatewindowshow: (ev: any) => any;
10645
10645
target: HTMLElement;
0 commit comments