@types/web 0.0.210 → 0.0.212
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +9 -4
- package/package.json +1 -1
- package/ts5.5/index.d.ts +9 -4
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.212 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.212.
|
package/index.d.ts
CHANGED
|
@@ -2433,10 +2433,13 @@ interface WebTransportOptions {
|
|
|
2433
2433
|
serverCertificateHashes?: WebTransportHash[];
|
|
2434
2434
|
}
|
|
2435
2435
|
|
|
2436
|
-
interface
|
|
2436
|
+
interface WebTransportSendOptions {
|
|
2437
2437
|
sendOrder?: number;
|
|
2438
2438
|
}
|
|
2439
2439
|
|
|
2440
|
+
interface WebTransportSendStreamOptions extends WebTransportSendOptions {
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2440
2443
|
interface WheelEventInit extends MouseEventInit {
|
|
2441
2444
|
deltaMode?: number;
|
|
2442
2445
|
deltaX?: number;
|
|
@@ -9933,7 +9936,7 @@ interface GlobalEventHandlers {
|
|
|
9933
9936
|
* Fires immediately after the browser loads the object.
|
|
9934
9937
|
* @param ev The event.
|
|
9935
9938
|
*
|
|
9936
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9939
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
|
|
9937
9940
|
*/
|
|
9938
9941
|
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9939
9942
|
/**
|
|
@@ -10745,6 +10748,8 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
10745
10748
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close)
|
|
10746
10749
|
*/
|
|
10747
10750
|
close(returnValue?: string): void;
|
|
10751
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/requestClose) */
|
|
10752
|
+
requestClose(returnValue?: string): void;
|
|
10748
10753
|
/**
|
|
10749
10754
|
* Displays the dialog element.
|
|
10750
10755
|
*
|
|
@@ -14864,7 +14869,7 @@ interface IDBObjectStore {
|
|
|
14864
14869
|
*
|
|
14865
14870
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
|
|
14866
14871
|
*/
|
|
14867
|
-
readonly keyPath: string | string[];
|
|
14872
|
+
readonly keyPath: string | string[] | null;
|
|
14868
14873
|
/**
|
|
14869
14874
|
* Returns the name of the store.
|
|
14870
14875
|
*
|
|
@@ -29277,7 +29282,7 @@ declare var onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null;
|
|
|
29277
29282
|
* Fires immediately after the browser loads the object.
|
|
29278
29283
|
* @param ev The event.
|
|
29279
29284
|
*
|
|
29280
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
29285
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
|
|
29281
29286
|
*/
|
|
29282
29287
|
declare var onload: ((this: Window, ev: Event) => any) | null;
|
|
29283
29288
|
/**
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -2433,10 +2433,13 @@ interface WebTransportOptions {
|
|
|
2433
2433
|
serverCertificateHashes?: WebTransportHash[];
|
|
2434
2434
|
}
|
|
2435
2435
|
|
|
2436
|
-
interface
|
|
2436
|
+
interface WebTransportSendOptions {
|
|
2437
2437
|
sendOrder?: number;
|
|
2438
2438
|
}
|
|
2439
2439
|
|
|
2440
|
+
interface WebTransportSendStreamOptions extends WebTransportSendOptions {
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2440
2443
|
interface WheelEventInit extends MouseEventInit {
|
|
2441
2444
|
deltaMode?: number;
|
|
2442
2445
|
deltaX?: number;
|
|
@@ -9923,7 +9926,7 @@ interface GlobalEventHandlers {
|
|
|
9923
9926
|
* Fires immediately after the browser loads the object.
|
|
9924
9927
|
* @param ev The event.
|
|
9925
9928
|
*
|
|
9926
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
9929
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
|
|
9927
9930
|
*/
|
|
9928
9931
|
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9929
9932
|
/**
|
|
@@ -10733,6 +10736,8 @@ interface HTMLDialogElement extends HTMLElement {
|
|
|
10733
10736
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close)
|
|
10734
10737
|
*/
|
|
10735
10738
|
close(returnValue?: string): void;
|
|
10739
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/requestClose) */
|
|
10740
|
+
requestClose(returnValue?: string): void;
|
|
10736
10741
|
/**
|
|
10737
10742
|
* Displays the dialog element.
|
|
10738
10743
|
*
|
|
@@ -14844,7 +14849,7 @@ interface IDBObjectStore {
|
|
|
14844
14849
|
*
|
|
14845
14850
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBObjectStore/keyPath)
|
|
14846
14851
|
*/
|
|
14847
|
-
readonly keyPath: string | string[];
|
|
14852
|
+
readonly keyPath: string | string[] | null;
|
|
14848
14853
|
/**
|
|
14849
14854
|
* Returns the name of the store.
|
|
14850
14855
|
*
|
|
@@ -29255,7 +29260,7 @@ declare var onkeyup: ((this: Window, ev: KeyboardEvent) => any) | null;
|
|
|
29255
29260
|
* Fires immediately after the browser loads the object.
|
|
29256
29261
|
* @param ev The event.
|
|
29257
29262
|
*
|
|
29258
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/
|
|
29263
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/load_event)
|
|
29259
29264
|
*/
|
|
29260
29265
|
declare var onload: ((this: Window, ev: Event) => any) | null;
|
|
29261
29266
|
/**
|