Nuxt/examples/with-wasm/server/api/hello.ts

10 lines
159 B
TypeScript

import sample from './sample.wasm'
export default async () => {
const { instance } = await sample({})
return {
result: instance.exports.main()
}
}