``` // 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 ```
but