@types/web 0.0.111 → 0.0.113
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 +25 -0
- 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.113 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.113.
|
package/index.d.ts
CHANGED
|
@@ -4294,6 +4294,8 @@ interface CSSStyleDeclaration {
|
|
|
4294
4294
|
maskSize: string;
|
|
4295
4295
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-type) */
|
|
4296
4296
|
maskType: string;
|
|
4297
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/math-depth) */
|
|
4298
|
+
mathDepth: string;
|
|
4297
4299
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/math-style) */
|
|
4298
4300
|
mathStyle: string;
|
|
4299
4301
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-block-size) */
|
|
@@ -17931,9 +17933,13 @@ declare var RTCDtlsTransport: {
|
|
|
17931
17933
|
new(): RTCDtlsTransport;
|
|
17932
17934
|
};
|
|
17933
17935
|
|
|
17936
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame) */
|
|
17934
17937
|
interface RTCEncodedAudioFrame {
|
|
17938
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/data) */
|
|
17935
17939
|
data: ArrayBuffer;
|
|
17940
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp) */
|
|
17936
17941
|
readonly timestamp: number;
|
|
17942
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/getMetadata) */
|
|
17937
17943
|
getMetadata(): RTCEncodedAudioFrameMetadata;
|
|
17938
17944
|
}
|
|
17939
17945
|
|
|
@@ -17942,10 +17948,15 @@ declare var RTCEncodedAudioFrame: {
|
|
|
17942
17948
|
new(): RTCEncodedAudioFrame;
|
|
17943
17949
|
};
|
|
17944
17950
|
|
|
17951
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame) */
|
|
17945
17952
|
interface RTCEncodedVideoFrame {
|
|
17953
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/data) */
|
|
17946
17954
|
data: ArrayBuffer;
|
|
17955
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp) */
|
|
17947
17956
|
readonly timestamp: number;
|
|
17957
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type) */
|
|
17948
17958
|
readonly type: RTCEncodedVideoFrameType;
|
|
17959
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/getMetadata) */
|
|
17949
17960
|
getMetadata(): RTCEncodedVideoFrameMetadata;
|
|
17950
17961
|
}
|
|
17951
17962
|
|
|
@@ -18220,6 +18231,8 @@ declare var RTCPeerConnectionIceEvent: {
|
|
|
18220
18231
|
interface RTCRtpReceiver {
|
|
18221
18232
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track) */
|
|
18222
18233
|
readonly track: MediaStreamTrack;
|
|
18234
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */
|
|
18235
|
+
transform: RTCRtpTransform | null;
|
|
18223
18236
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport) */
|
|
18224
18237
|
readonly transport: RTCDtlsTransport | null;
|
|
18225
18238
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getContributingSources) */
|
|
@@ -18239,6 +18252,15 @@ declare var RTCRtpReceiver: {
|
|
|
18239
18252
|
getCapabilities(kind: string): RTCRtpCapabilities | null;
|
|
18240
18253
|
};
|
|
18241
18254
|
|
|
18255
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpScriptTransform) */
|
|
18256
|
+
interface RTCRtpScriptTransform {
|
|
18257
|
+
}
|
|
18258
|
+
|
|
18259
|
+
declare var RTCRtpScriptTransform: {
|
|
18260
|
+
prototype: RTCRtpScriptTransform;
|
|
18261
|
+
new(worker: Worker, options?: any, transfer?: any[]): RTCRtpScriptTransform;
|
|
18262
|
+
};
|
|
18263
|
+
|
|
18242
18264
|
/**
|
|
18243
18265
|
* Provides the ability to control and obtain details about how a particular MediaStreamTrack is encoded and sent to a remote peer.
|
|
18244
18266
|
*
|
|
@@ -18249,6 +18271,8 @@ interface RTCRtpSender {
|
|
|
18249
18271
|
readonly dtmf: RTCDTMFSender | null;
|
|
18250
18272
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/track) */
|
|
18251
18273
|
readonly track: MediaStreamTrack | null;
|
|
18274
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform) */
|
|
18275
|
+
transform: RTCRtpTransform | null;
|
|
18252
18276
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport) */
|
|
18253
18277
|
readonly transport: RTCDtlsTransport | null;
|
|
18254
18278
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/getParameters) */
|
|
@@ -28009,6 +28033,7 @@ type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
|
|
|
28009
28033
|
type OptionalPostfixToken<T extends string> = ` ${T}` | "";
|
|
28010
28034
|
type OptionalPrefixToken<T extends string> = `${T} ` | "";
|
|
28011
28035
|
type PerformanceEntryList = PerformanceEntry[];
|
|
28036
|
+
type RTCRtpTransform = RTCRtpScriptTransform;
|
|
28012
28037
|
type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
|
|
28013
28038
|
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
|
|
28014
28039
|
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
|