diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-04 18:20:05 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-04 18:23:05 -0500 |
commit | dcddbee07e20163ae167dd67fe58f0776f9acb64 (patch) | |
tree | 4a55c4bd42859f7bebae9d9cb31c6ae5fa0e3f9a /ext/js/comm | |
parent | 4b80a486181b902f3b1e089b584818ce725a91be (diff) |
Update how ts comments are handled
Diffstat (limited to 'ext/js/comm')
-rw-r--r-- | ext/js/comm/frame-ancestry-handler.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/comm/frame-ancestry-handler.js b/ext/js/comm/frame-ancestry-handler.js index 687ec368..e4d08f28 100644 --- a/ext/js/comm/frame-ancestry-handler.js +++ b/ext/js/comm/frame-ancestry-handler.js @@ -295,7 +295,7 @@ export class FrameAncestryHandler { while (walker.nextNode()) { const element = /** @type {Element} */ (walker.currentNode); - // @ts-ignore - this is more simple to elide any type checks or casting + // @ts-expect-error - this is more simple to elide any type checks or casting if (element.contentWindow === contentWindow) { return element; } @@ -303,7 +303,7 @@ export class FrameAncestryHandler { /** @type {?ShadowRoot|undefined} */ const shadowRoot = ( element.shadowRoot || - // @ts-ignore - openOrClosedShadowRoot is available to Firefox 63+ for WebExtensions + // @ts-expect-error - openOrClosedShadowRoot is available to Firefox 63+ for WebExtensions element.openOrClosedShadowRoot ); if (shadowRoot) { |