@types/web 0.0.265 → 0.0.267
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 +17 -4
- package/package.json +1 -1
- package/ts5.5/index.d.ts +17 -4
- package/ts5.6/index.d.ts +17 -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.267 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.267.
|
package/index.d.ts
CHANGED
|
@@ -10040,6 +10040,19 @@ declare var DeviceOrientationEvent: {
|
|
|
10040
10040
|
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
|
|
10041
10041
|
};
|
|
10042
10042
|
|
|
10043
|
+
/** Available only in secure contexts. */
|
|
10044
|
+
interface DigitalCredential extends Credential {
|
|
10045
|
+
readonly data: any;
|
|
10046
|
+
readonly protocol: string;
|
|
10047
|
+
toJSON(): any;
|
|
10048
|
+
}
|
|
10049
|
+
|
|
10050
|
+
declare var DigitalCredential: {
|
|
10051
|
+
prototype: DigitalCredential;
|
|
10052
|
+
new(): DigitalCredential;
|
|
10053
|
+
userAgentAllowsProtocol(protocol: string): boolean;
|
|
10054
|
+
};
|
|
10055
|
+
|
|
10043
10056
|
interface DocumentEventMap extends GlobalEventHandlersEventMap {
|
|
10044
10057
|
"DOMContentLoaded": Event;
|
|
10045
10058
|
"fullscreenchange": Event;
|
|
@@ -17162,7 +17175,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17162
17175
|
*/
|
|
17163
17176
|
chOff: string;
|
|
17164
17177
|
/**
|
|
17165
|
-
* The **`colSpan`**
|
|
17178
|
+
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
17166
17179
|
*
|
|
17167
17180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
17168
17181
|
*/
|
|
@@ -17183,7 +17196,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17183
17196
|
*/
|
|
17184
17197
|
noWrap: boolean;
|
|
17185
17198
|
/**
|
|
17186
|
-
* The **`rowSpan`**
|
|
17199
|
+
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
17187
17200
|
*
|
|
17188
17201
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
17189
17202
|
*/
|
|
@@ -17242,7 +17255,7 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
17242
17255
|
*/
|
|
17243
17256
|
chOff: string;
|
|
17244
17257
|
/**
|
|
17245
|
-
* The **`span`**
|
|
17258
|
+
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
|
|
17246
17259
|
*
|
|
17247
17260
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
|
|
17248
17261
|
*/
|
|
@@ -24579,7 +24592,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
24579
24592
|
*/
|
|
24580
24593
|
readonly response: AuthenticatorResponse;
|
|
24581
24594
|
/**
|
|
24582
|
-
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns
|
|
24595
|
+
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
|
|
24583
24596
|
*
|
|
24584
24597
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
|
|
24585
24598
|
*/
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -10032,6 +10032,19 @@ declare var DeviceOrientationEvent: {
|
|
|
10032
10032
|
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
|
|
10033
10033
|
};
|
|
10034
10034
|
|
|
10035
|
+
/** Available only in secure contexts. */
|
|
10036
|
+
interface DigitalCredential extends Credential {
|
|
10037
|
+
readonly data: any;
|
|
10038
|
+
readonly protocol: string;
|
|
10039
|
+
toJSON(): any;
|
|
10040
|
+
}
|
|
10041
|
+
|
|
10042
|
+
declare var DigitalCredential: {
|
|
10043
|
+
prototype: DigitalCredential;
|
|
10044
|
+
new(): DigitalCredential;
|
|
10045
|
+
userAgentAllowsProtocol(protocol: string): boolean;
|
|
10046
|
+
};
|
|
10047
|
+
|
|
10035
10048
|
interface DocumentEventMap extends GlobalEventHandlersEventMap {
|
|
10036
10049
|
"DOMContentLoaded": Event;
|
|
10037
10050
|
"fullscreenchange": Event;
|
|
@@ -17141,7 +17154,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17141
17154
|
*/
|
|
17142
17155
|
chOff: string;
|
|
17143
17156
|
/**
|
|
17144
|
-
* The **`colSpan`**
|
|
17157
|
+
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
17145
17158
|
*
|
|
17146
17159
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
17147
17160
|
*/
|
|
@@ -17162,7 +17175,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17162
17175
|
*/
|
|
17163
17176
|
noWrap: boolean;
|
|
17164
17177
|
/**
|
|
17165
|
-
* The **`rowSpan`**
|
|
17178
|
+
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
17166
17179
|
*
|
|
17167
17180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
17168
17181
|
*/
|
|
@@ -17221,7 +17234,7 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
17221
17234
|
*/
|
|
17222
17235
|
chOff: string;
|
|
17223
17236
|
/**
|
|
17224
|
-
* The **`span`**
|
|
17237
|
+
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
|
|
17225
17238
|
*
|
|
17226
17239
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
|
|
17227
17240
|
*/
|
|
@@ -24558,7 +24571,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
24558
24571
|
*/
|
|
24559
24572
|
readonly response: AuthenticatorResponse;
|
|
24560
24573
|
/**
|
|
24561
|
-
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns
|
|
24574
|
+
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
|
|
24562
24575
|
*
|
|
24563
24576
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
|
|
24564
24577
|
*/
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -10040,6 +10040,19 @@ declare var DeviceOrientationEvent: {
|
|
|
10040
10040
|
new(type: string, eventInitDict?: DeviceOrientationEventInit): DeviceOrientationEvent;
|
|
10041
10041
|
};
|
|
10042
10042
|
|
|
10043
|
+
/** Available only in secure contexts. */
|
|
10044
|
+
interface DigitalCredential extends Credential {
|
|
10045
|
+
readonly data: any;
|
|
10046
|
+
readonly protocol: string;
|
|
10047
|
+
toJSON(): any;
|
|
10048
|
+
}
|
|
10049
|
+
|
|
10050
|
+
declare var DigitalCredential: {
|
|
10051
|
+
prototype: DigitalCredential;
|
|
10052
|
+
new(): DigitalCredential;
|
|
10053
|
+
userAgentAllowsProtocol(protocol: string): boolean;
|
|
10054
|
+
};
|
|
10055
|
+
|
|
10043
10056
|
interface DocumentEventMap extends GlobalEventHandlersEventMap {
|
|
10044
10057
|
"DOMContentLoaded": Event;
|
|
10045
10058
|
"fullscreenchange": Event;
|
|
@@ -17162,7 +17175,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17162
17175
|
*/
|
|
17163
17176
|
chOff: string;
|
|
17164
17177
|
/**
|
|
17165
|
-
* The **`colSpan`**
|
|
17178
|
+
* The **`colSpan`** property of the HTMLTableCellElement interface represents the number of columns this cell must span; this lets the cell occupy space across multiple columns of the table.
|
|
17166
17179
|
*
|
|
17167
17180
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/colSpan)
|
|
17168
17181
|
*/
|
|
@@ -17183,7 +17196,7 @@ interface HTMLTableCellElement extends HTMLElement {
|
|
|
17183
17196
|
*/
|
|
17184
17197
|
noWrap: boolean;
|
|
17185
17198
|
/**
|
|
17186
|
-
* The **`rowSpan`**
|
|
17199
|
+
* The **`rowSpan`** property of the HTMLTableCellElement interface represents the number of rows this cell must span; this lets the cell occupy space across multiple rows of the table.
|
|
17187
17200
|
*
|
|
17188
17201
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/rowSpan)
|
|
17189
17202
|
*/
|
|
@@ -17242,7 +17255,7 @@ interface HTMLTableColElement extends HTMLElement {
|
|
|
17242
17255
|
*/
|
|
17243
17256
|
chOff: string;
|
|
17244
17257
|
/**
|
|
17245
|
-
* The **`span`**
|
|
17258
|
+
* The **`span`** property of the HTMLTableColElement interface represents the number of columns this col or colgroup must span; this lets the column occupy space across multiple columns of the table.
|
|
17246
17259
|
*
|
|
17247
17260
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/span)
|
|
17248
17261
|
*/
|
|
@@ -24579,7 +24592,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
24579
24592
|
*/
|
|
24580
24593
|
readonly response: AuthenticatorResponse;
|
|
24581
24594
|
/**
|
|
24582
|
-
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns
|
|
24595
|
+
* The **`getClientExtensionResults()`** method of the PublicKeyCredential interface returns an object mapping the identifiers of extensions requested during credential creation or authentication, and their results after processing by the user agent.
|
|
24583
24596
|
*
|
|
24584
24597
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/getClientExtensionResults)
|
|
24585
24598
|
*/
|