@types/web 0.0.113 → 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 +45 -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) */
|
|
@@ -5488,10 +5494,16 @@ interface CanvasTextDrawingStyles {
|
|
|
5488
5494
|
font: string;
|
|
5489
5495
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
|
5490
5496
|
fontKerning: CanvasFontKerning;
|
|
5497
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
|
5498
|
+
letterSpacing: string;
|
|
5491
5499
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
|
5492
5500
|
textAlign: CanvasTextAlign;
|
|
5493
5501
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
|
5494
5502
|
textBaseline: CanvasTextBaseline;
|
|
5503
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textRendering) */
|
|
5504
|
+
textRendering: CanvasTextRendering;
|
|
5505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
|
5506
|
+
wordSpacing: string;
|
|
5495
5507
|
}
|
|
5496
5508
|
|
|
5497
5509
|
interface CanvasTransform {
|
|
@@ -16380,6 +16392,8 @@ interface NotificationEventMap {
|
|
|
16380
16392
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
|
16381
16393
|
*/
|
|
16382
16394
|
interface Notification extends EventTarget {
|
|
16395
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
|
16396
|
+
readonly badge: string;
|
|
16383
16397
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
|
16384
16398
|
readonly body: string;
|
|
16385
16399
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|
|
@@ -22050,6 +22064,24 @@ interface TextMetrics {
|
|
|
22050
22064
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/actualBoundingBoxRight)
|
|
22051
22065
|
*/
|
|
22052
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;
|
|
22053
22085
|
/**
|
|
22054
22086
|
* Returns the measurement described below.
|
|
22055
22087
|
*
|
|
@@ -22062,6 +22094,18 @@ interface TextMetrics {
|
|
|
22062
22094
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextMetrics/fontBoundingBoxDescent)
|
|
22063
22095
|
*/
|
|
22064
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;
|
|
22065
22109
|
/**
|
|
22066
22110
|
* Returns the measurement described below.
|
|
22067
22111
|
*
|