@types/webassembly-js-api
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -40,2 +40,16 @@ // Type definitions for WebAssembly v1 (MVP) | ||
/** | ||
* WebAssembly.Global | ||
*/ | ||
interface GlobalDescriptor { | ||
value: 'i32' | 'i64' | 'f32' | 'f64'; | ||
mutable?: boolean; | ||
} | ||
class Global { | ||
value: number; | ||
constructor(descriptor: GlobalDescriptor, value?: number); | ||
valueOf(): number; | ||
} | ||
/** | ||
* WebAssembly.Instance | ||
@@ -42,0 +56,0 @@ */ |
{ | ||
"name": "@types/webassembly-js-api", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "TypeScript definitions for WebAssembly v1 (MVP)", | ||
@@ -30,8 +30,9 @@ "license": "MIT", | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/webassembly-js-api" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "f8c4e00a25d95122ea5e0078c2443c1724d88cb4952d38d4cb800df9febbf8bb", | ||
"typesPublisherContentHash": "204a3d475eb1d493de0b5f994fe1f17575c437e95b2ce3ac147c8e2acb7722eb", | ||
"typeScriptVersion": "2.2" | ||
} |
@@ -5,3 +5,3 @@ # Installation | ||
# Summary | ||
This package contains type definitions for WebAssembly v1 (MVP) (https://github.com/winksaville/test-webassembly-js-ts). | ||
This package contains type definitions for WebAssembly v1 (MVP) ( https://github.com/winksaville/test-webassembly-js-ts ). | ||
@@ -12,3 +12,3 @@ # Details | ||
Additional Details | ||
* Last updated: Wed, 21 Nov 2018 16:44:45 GMT | ||
* Last updated: Thu, 04 Apr 2019 17:14:46 GMT | ||
* Dependencies: none | ||
@@ -15,0 +15,0 @@ * Global values: WebAssembly |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6650
113