1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-01 10:23:24 +00:00
Nuxt/examples/with-wasm/server/api/hello.ts
2021-10-12 14:51:41 +02:00

10 lines
159 B
TypeScript

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