cielyic

Results 1 issues of cielyic

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