@types/web 0.0.109 → 0.0.110
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 +5 -5
- 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.110 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.110.
|
package/index.d.ts
CHANGED
|
@@ -1588,6 +1588,9 @@ interface RTCSessionDescriptionInit {
|
|
|
1588
1588
|
type: RTCSdpType;
|
|
1589
1589
|
}
|
|
1590
1590
|
|
|
1591
|
+
interface RTCSetParameterOptions {
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1591
1594
|
interface RTCStats {
|
|
1592
1595
|
id: string;
|
|
1593
1596
|
timestamp: DOMHighResTimeStamp;
|
|
@@ -5016,16 +5019,13 @@ declare var CSSStyleDeclaration: {
|
|
|
5016
5019
|
*
|
|
5017
5020
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule)
|
|
5018
5021
|
*/
|
|
5019
|
-
interface CSSStyleRule extends
|
|
5020
|
-
readonly cssRules: CSSRuleList;
|
|
5022
|
+
interface CSSStyleRule extends CSSGroupingRule {
|
|
5021
5023
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/selectorText) */
|
|
5022
5024
|
selectorText: string;
|
|
5023
5025
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style) */
|
|
5024
5026
|
readonly style: CSSStyleDeclaration;
|
|
5025
5027
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap) */
|
|
5026
5028
|
readonly styleMap: StylePropertyMap;
|
|
5027
|
-
deleteRule(index: number): void;
|
|
5028
|
-
insertRule(rule: string, index?: number): number;
|
|
5029
5029
|
}
|
|
5030
5030
|
|
|
5031
5031
|
declare var CSSStyleRule: {
|
|
@@ -18258,7 +18258,7 @@ interface RTCRtpSender {
|
|
|
18258
18258
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/replaceTrack) */
|
|
18259
18259
|
replaceTrack(withTrack: MediaStreamTrack | null): Promise<void>;
|
|
18260
18260
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/setParameters) */
|
|
18261
|
-
setParameters(parameters: RTCRtpSendParameters): Promise<void>;
|
|
18261
|
+
setParameters(parameters: RTCRtpSendParameters, setParameterOptions?: RTCSetParameterOptions): Promise<void>;
|
|
18262
18262
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/setStreams) */
|
|
18263
18263
|
setStreams(...streams: MediaStream[]): void;
|
|
18264
18264
|
}
|