@types/audioworklet 0.0.99 → 0.0.100
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 +6 -1
- package/package.json +1 -1
- package/ts5.5/index.d.ts +6 -1
- package/ts5.6/index.d.ts +6 -1
- package/ts5.9/index.d.ts +6 -1
package/README.md
CHANGED
|
@@ -30,4 +30,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
30
30
|
|
|
31
31
|
## Deploy Metadata
|
|
32
32
|
|
|
33
|
-
You can read what changed in version 0.0.
|
|
33
|
+
You can read what changed in version 0.0.100 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.100.
|
package/index.d.ts
CHANGED
|
@@ -1608,8 +1608,13 @@ declare namespace WebAssembly {
|
|
|
1608
1608
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
1609
1609
|
*/
|
|
1610
1610
|
interface Global<T extends ValueType = ValueType> {
|
|
1611
|
-
/**
|
|
1611
|
+
/**
|
|
1612
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
1613
|
+
*
|
|
1614
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
1615
|
+
*/
|
|
1612
1616
|
value: ValueTypeMap[T];
|
|
1617
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
1613
1618
|
valueOf(): ValueTypeMap[T];
|
|
1614
1619
|
}
|
|
1615
1620
|
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -1605,8 +1605,13 @@ declare namespace WebAssembly {
|
|
|
1605
1605
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
1606
1606
|
*/
|
|
1607
1607
|
interface Global<T extends ValueType = ValueType> {
|
|
1608
|
-
/**
|
|
1608
|
+
/**
|
|
1609
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
1610
|
+
*
|
|
1611
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
1612
|
+
*/
|
|
1609
1613
|
value: ValueTypeMap[T];
|
|
1614
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
1610
1615
|
valueOf(): ValueTypeMap[T];
|
|
1611
1616
|
}
|
|
1612
1617
|
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -1605,8 +1605,13 @@ declare namespace WebAssembly {
|
|
|
1605
1605
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
1606
1606
|
*/
|
|
1607
1607
|
interface Global<T extends ValueType = ValueType> {
|
|
1608
|
-
/**
|
|
1608
|
+
/**
|
|
1609
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
1610
|
+
*
|
|
1611
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
1612
|
+
*/
|
|
1609
1613
|
value: ValueTypeMap[T];
|
|
1614
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
1610
1615
|
valueOf(): ValueTypeMap[T];
|
|
1611
1616
|
}
|
|
1612
1617
|
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -1605,8 +1605,13 @@ declare namespace WebAssembly {
|
|
|
1605
1605
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
1606
1606
|
*/
|
|
1607
1607
|
interface Global<T extends ValueType = ValueType> {
|
|
1608
|
-
/**
|
|
1608
|
+
/**
|
|
1609
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
1610
|
+
*
|
|
1611
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
1612
|
+
*/
|
|
1609
1613
|
value: ValueTypeMap[T];
|
|
1614
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
1610
1615
|
valueOf(): ValueTypeMap[T];
|
|
1611
1616
|
}
|
|
1612
1617
|
|