From #36775, `unknown` doesn't work in JS with a jsdoc comment: ```ts try { // something } catch (/** @type {unknown} */ err) { // `err` is still typed as `any`: err; // $ExpectType unknown } ```
From #36775,
unknowndoesn't work in JS with a jsdoc comment: