import { lowerI64Imports } from "@wasmer/wasm-transformer";
const transformWasmModuleBytes = async () => {
const myWasmModuleBytes = new Uint8Array([ ... ]);
const loweredWasmModuleBytes = await lowerI64Imports(myWasmModulesBytes);
transformWasmModuleBytes();