@types/webworker 0.0.75 → 0.0.76
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
|
@@ -47,4 +47,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
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.76 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.76.
|
package/index.d.ts
CHANGED
|
@@ -14679,8 +14679,13 @@ declare namespace WebAssembly {
|
|
|
14679
14679
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
14680
14680
|
*/
|
|
14681
14681
|
interface Global<T extends ValueType = ValueType> {
|
|
14682
|
-
/**
|
|
14682
|
+
/**
|
|
14683
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
14684
|
+
*
|
|
14685
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
14686
|
+
*/
|
|
14683
14687
|
value: ValueTypeMap[T];
|
|
14688
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
14684
14689
|
valueOf(): ValueTypeMap[T];
|
|
14685
14690
|
}
|
|
14686
14691
|
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -14676,8 +14676,13 @@ declare namespace WebAssembly {
|
|
|
14676
14676
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
14677
14677
|
*/
|
|
14678
14678
|
interface Global<T extends ValueType = ValueType> {
|
|
14679
|
-
/**
|
|
14679
|
+
/**
|
|
14680
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
14681
|
+
*
|
|
14682
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
14683
|
+
*/
|
|
14680
14684
|
value: ValueTypeMap[T];
|
|
14685
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
14681
14686
|
valueOf(): ValueTypeMap[T];
|
|
14682
14687
|
}
|
|
14683
14688
|
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -14676,8 +14676,13 @@ declare namespace WebAssembly {
|
|
|
14676
14676
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
14677
14677
|
*/
|
|
14678
14678
|
interface Global<T extends ValueType = ValueType> {
|
|
14679
|
-
/**
|
|
14679
|
+
/**
|
|
14680
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
14681
|
+
*
|
|
14682
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
14683
|
+
*/
|
|
14680
14684
|
value: ValueTypeMap[T];
|
|
14685
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
14681
14686
|
valueOf(): ValueTypeMap[T];
|
|
14682
14687
|
}
|
|
14683
14688
|
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -14676,8 +14676,13 @@ declare namespace WebAssembly {
|
|
|
14676
14676
|
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global)
|
|
14677
14677
|
*/
|
|
14678
14678
|
interface Global<T extends ValueType = ValueType> {
|
|
14679
|
-
/**
|
|
14679
|
+
/**
|
|
14680
|
+
* The **`value`** property of the WebAssembly.Global object prototype returns the value contained inside the global variable.
|
|
14681
|
+
*
|
|
14682
|
+
* [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/value)
|
|
14683
|
+
*/
|
|
14680
14684
|
value: ValueTypeMap[T];
|
|
14685
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Global/valueOf) */
|
|
14681
14686
|
valueOf(): ValueTypeMap[T];
|
|
14682
14687
|
}
|
|
14683
14688
|
|