Where is WebAssembly type?
In new version of workers-type, I cant find WebAssembly type(which present in "dom", "webworker" libs)
I don't believe the runtime supports this which is why you don't see it. WebAssembly must be uploaded and bound as part of your project. You can't interact with it dynamically at runtime.
the runtime does support WebAssembly as can be seen in the miniflare docs here. Unfortunately this documentation does not appear in the main cloudflare worker docs, however it does work.
we had to add skipLibCheck and sprinkle in some // @ts-ignore to get our type check passing.
Hey! 👋 Thanks for reporting this, we'll get this fixed in the next major version of workers-types using the new type generation system. 👍
Hey! 👋 WebAssembly types have been added to @cloudflare/workers-types@4. 🎉