@types/web 0.0.114 → 0.0.115
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 +39 -1
- package/package.json +1 -1
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.115 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.115.
|
package/index.d.ts
CHANGED
|
@@ -1417,8 +1417,8 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
|
|
|
1417
1417
|
jitterBufferDelay?: number;
|
|
1418
1418
|
jitterBufferEmittedCount?: number;
|
|
1419
1419
|
keyFramesDecoded?: number;
|
|
1420
|
-
kind: string;
|
|
1421
1420
|
lastPacketReceivedTimestamp?: DOMHighResTimeStamp;
|
|
1421
|
+
mid?: string;
|
|
1422
1422
|
nackCount?: number;
|
|
1423
1423
|
packetsDiscarded?: number;
|
|
1424
1424
|
pliCount?: number;
|
|
@@ -1433,6 +1433,7 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
|
|
|
1433
1433
|
totalSamplesDuration?: number;
|
|
1434
1434
|
totalSamplesReceived?: number;
|
|
1435
1435
|
totalSquaredInterFrameDelay?: number;
|
|
1436
|
+
trackIdentifier: string;
|
|
1436
1437
|
}
|
|
1437
1438
|
|
|
1438
1439
|
interface RTCLocalSessionDescriptionInit {
|
|
@@ -1468,6 +1469,7 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
|
|
|
1468
1469
|
retransmittedBytesSent?: number;
|
|
1469
1470
|
retransmittedPacketsSent?: number;
|
|
1470
1471
|
rid?: string;
|
|
1472
|
+
rtxSsrc?: number;
|
|
1471
1473
|
targetBitrate?: number;
|
|
1472
1474
|
totalEncodeTime?: number;
|
|
1473
1475
|
totalEncodedBytesTarget?: number;
|
|
@@ -3866,6 +3868,8 @@ interface CSSStyleDeclaration {
|
|
|
3866
3868
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */
|
|
3867
3869
|
backgroundSize: string;
|
|
3868
3870
|
baselineShift: string;
|
|
3871
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/baseline-source) */
|
|
3872
|
+
baselineSource: string;
|
|
3869
3873
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */
|
|
3870
3874
|
blockSize: string;
|
|
3871
3875
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border) */
|
|
@@ -4322,6 +4326,8 @@ interface CSSStyleDeclaration {
|
|
|
4322
4326
|
objectPosition: string;
|
|
4323
4327
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset) */
|
|
4324
4328
|
offset: string;
|
|
4329
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-anchor) */
|
|
4330
|
+
offsetAnchor: string;
|
|
4325
4331
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-distance) */
|
|
4326
4332
|
offsetDistance: string;
|
|
4327
4333
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
|
|
@@ -5494,6 +5500,8 @@ interface CanvasTextDrawingStyles {
|
|
|
5494
5500
|
textAlign: CanvasTextAlign;
|
|
5495
5501
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
|
5496
5502
|
textBaseline: CanvasTextBaseline;
|
|
5503
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textRendering) */
|
|
5504
|
+
textRendering: CanvasTextRendering;
|
|
5497
5505
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
|
5498
5506
|
wordSpacing: string;
|
|
5499
5507
|
}
|
|
@@ -22056,6 +22064,24 @@ interface TextMetrics {
|
|
|
22056
22064
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxRight)
|
|
22057
22065
|
*/
|
|
22058
22066
|
readonly actualBoundingBoxRight: number;
|
|
22067
|
+
/**
|
|
22068
|
+
* Returns the measurement described below.
|
|
22069
|
+
*
|
|
22070
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/alphabeticBaseline)
|
|
22071
|
+
*/
|
|
22072
|
+
readonly alphabeticBaseline: number;
|
|
22073
|
+
/**
|
|
22074
|
+
* Returns the measurement described below.
|
|
22075
|
+
*
|
|
22076
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/emHeightAscent)
|
|
22077
|
+
*/
|
|
22078
|
+
readonly emHeightAscent: number;
|
|
22079
|
+
/**
|
|
22080
|
+
* Returns the measurement described below.
|
|
22081
|
+
*
|
|
22082
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/emHeightDescent)
|
|
22083
|
+
*/
|
|
22084
|
+
readonly emHeightDescent: number;
|
|
22059
22085
|
/**
|
|
22060
22086
|
* Returns the measurement described below.
|
|
22061
22087
|
*
|
|
@@ -22068,6 +22094,18 @@ interface TextMetrics {
|
|
|
22068
22094
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/fontBoundingBoxDescent)
|
|
22069
22095
|
*/
|
|
22070
22096
|
readonly fontBoundingBoxDescent: number;
|
|
22097
|
+
/**
|
|
22098
|
+
* Returns the measurement described below.
|
|
22099
|
+
*
|
|
22100
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/hangingBaseline)
|
|
22101
|
+
*/
|
|
22102
|
+
readonly hangingBaseline: number;
|
|
22103
|
+
/**
|
|
22104
|
+
* Returns the measurement described below.
|
|
22105
|
+
*
|
|
22106
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/ideographicBaseline)
|
|
22107
|
+
*/
|
|
22108
|
+
readonly ideographicBaseline: number;
|
|
22071
22109
|
/**
|
|
22072
22110
|
* Returns the measurement described below.
|
|
22073
22111
|
*
|