AyresA
Denoβ€’7mo agoβ€’
8 replies
Ayres

Workers: Property 'onmessage' dos not exist

Im learning how to create worker threads but deno-ts says: Property 'onmessage' does not exist on type 'Window & typeof globalThis'.

Code


// worker.ts
self.onmessage = (message) => {
  // TODO: Do something with the message?
};


Am I missing some configuration?
Was this page helpful?