@bjoern.bg/hello-wasm
Advanced tools
Comparing version 0.1.7 to 0.1.8
@@ -7,7 +7,4 @@ /* tslint:disable */ | ||
/** | ||
* @param {number} x | ||
* @param {number} y | ||
* @param {number} z | ||
* @returns {number} | ||
*/ | ||
export function simplex_noise(x: number, y: number, z: number): number; | ||
export function simplex_noise(): number; |
@@ -65,9 +65,6 @@ import * as wasm from './hello_wasm_bg.wasm'; | ||
/** | ||
* @param {number} x | ||
* @param {number} y | ||
* @param {number} z | ||
* @returns {number} | ||
*/ | ||
export function simplex_noise(x, y, z) { | ||
const ret = wasm.simplex_noise(x, y, z); | ||
export function simplex_noise() { | ||
const ret = wasm.simplex_noise(); | ||
return ret; | ||
@@ -84,5 +81,5 @@ } | ||
export const __wbg_alert_a82e28191394ad16 = function(arg0, arg1) { | ||
export const __wbg_alert_0864dca4fb6ee835 = function(arg0, arg1) { | ||
alert(getStringFromWasm(arg0, arg1)); | ||
}; | ||
@@ -7,3 +7,3 @@ { | ||
"description": "A sample project with wasm-pack", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"license": "MIT/Apache-2.0", | ||
@@ -10,0 +10,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
48897
74