@types/web 0.0.112 → 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 +23 -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
|
@@ -17933,9 +17933,13 @@ declare var RTCDtlsTransport: {
|
|
|
17933
17933
|
new(): RTCDtlsTransport;
|
|
17934
17934
|
};
|
|
17935
17935
|
|
|
17936
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame) */
|
|
17936
17937
|
interface RTCEncodedAudioFrame {
|
|
17938
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/data) */
|
|
17937
17939
|
data: ArrayBuffer;
|
|
17940
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp) */
|
|
17938
17941
|
readonly timestamp: number;
|
|
17942
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/getMetadata) */
|
|
17939
17943
|
getMetadata(): RTCEncodedAudioFrameMetadata;
|
|
17940
17944
|
}
|
|
17941
17945
|
|
|
@@ -17944,10 +17948,15 @@ declare var RTCEncodedAudioFrame: {
|
|
|
17944
17948
|
new(): RTCEncodedAudioFrame;
|
|
17945
17949
|
};
|
|
17946
17950
|
|
|
17951
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame) */
|
|
17947
17952
|
interface RTCEncodedVideoFrame {
|
|
17953
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/data) */
|
|
17948
17954
|
data: ArrayBuffer;
|
|
17955
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp) */
|
|
17949
17956
|
readonly timestamp: number;
|
|
17957
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type) */
|
|
17950
17958
|
readonly type: RTCEncodedVideoFrameType;
|
|
17959
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/getMetadata) */
|
|
17951
17960
|
getMetadata(): RTCEncodedVideoFrameMetadata;
|
|
17952
17961
|
}
|
|
17953
17962
|
|
|
@@ -18222,6 +18231,8 @@ declare var RTCPeerConnectionIceEvent: {
|
|
|
18222
18231
|
interface RTCRtpReceiver {
|
|
18223
18232
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track) */
|
|
18224
18233
|
readonly track: MediaStreamTrack;
|
|
18234
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform) */
|
|
18235
|
+
transform: RTCRtpTransform | null;
|
|
18225
18236
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transport) */
|
|
18226
18237
|
readonly transport: RTCDtlsTransport | null;
|
|
18227
18238
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/getContributingSources) */
|
|
@@ -18241,6 +18252,15 @@ declare var RTCRtpReceiver: {
|
|
|
18241
18252
|
getCapabilities(kind: string): RTCRtpCapabilities | null;
|
|
18242
18253
|
};
|
|
18243
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
|
+
|
|
18244
18264
|
/**
|
|
18245
18265
|
* Provides the ability to control and obtain details about how a particular MediaStreamTrack is encoded and sent to a remote peer.
|
|
18246
18266
|
*
|
|
@@ -18251,6 +18271,8 @@ interface RTCRtpSender {
|
|
|
18251
18271
|
readonly dtmf: RTCDTMFSender | null;
|
|
18252
18272
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/track) */
|
|
18253
18273
|
readonly track: MediaStreamTrack | null;
|
|
18274
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform) */
|
|
18275
|
+
transform: RTCRtpTransform | null;
|
|
18254
18276
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transport) */
|
|
18255
18277
|
readonly transport: RTCDtlsTransport | null;
|
|
18256
18278
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/getParameters) */
|
|
@@ -28011,6 +28033,7 @@ type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
|
|
|
28011
28033
|
type OptionalPostfixToken<T extends string> = ` ${T}` | "";
|
|
28012
28034
|
type OptionalPrefixToken<T extends string> = `${T} ` | "";
|
|
28013
28035
|
type PerformanceEntryList = PerformanceEntry[];
|
|
28036
|
+
type RTCRtpTransform = RTCRtpScriptTransform;
|
|
28014
28037
|
type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
|
|
28015
28038
|
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
|
|
28016
28039
|
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
|