From 14ff227cd99aa9d4ca4df87523a73af6377f6043 Mon Sep 17 00:00:00 2001 From: DeoJin Date: Tue, 17 Mar 2026 15:06:50 +0100 Subject: [PATCH] docs: fix JSDoc reference link in d.ts-from-js guide --- .../copy/en/javascript/Creating DTS files From JS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/javascript/Creating DTS files From JS.md b/packages/documentation/copy/en/javascript/Creating DTS files From JS.md index 843079ee88b5..5cf1534a1e8b 100644 --- a/packages/documentation/copy/en/javascript/Creating DTS files From JS.md +++ b/packages/documentation/copy/en/javascript/Creating DTS files From JS.md @@ -10,7 +10,7 @@ translatable: true TypeScript added support for generating .d.ts files from JavaScript using JSDoc syntax. This set up means you can own the editor experience of TypeScript-powered editors without porting your project to TypeScript, or having to maintain .d.ts files in your codebase. -TypeScript supports most JSDoc tags, you can find [the reference here](/docs/handbook/type-checking-javascript-files.html#supported-jsdoc). +TypeScript supports most JSDoc tags; see the [JSDoc Reference](/docs/handbook/jsdoc-supported-types.html). ## Setting up your Project to emit .d.ts files