worker-loader
worker-loader copied to clipboard
why 'ctx.terminate' is not wokring
// my.worker.js
const ctx: Worker = self as any;
ctx.terminate(); // not a function
but
// my.worker.js
const ctx: Worker = self as any;
ctx.close(); // works , but type is wrong