Use plain text instead of @link in deprecation tags

The {@link} tags resolve to the local deprecated symbols rather than
the new ones in @backstage/plugin-app-react, and TSDoc doesn't support
cross-package links.

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-03-05 12:34:33 +01:00
parent 2c383b535b
commit 749ccb432d
@@ -23,7 +23,7 @@ import {
/**
* @public
* @deprecated Use {@link AnalyticsImplementationFactory} from `@backstage/plugin-app-react` instead.
* @deprecated Use `AnalyticsImplementationFactory` from `@backstage/plugin-app-react` instead.
*/
export type AnalyticsImplementationFactory<
Deps extends { [name in string]: unknown } = {},
@@ -41,7 +41,7 @@ const factoryDataRef =
* Creates analytics implementations.
*
* @public
* @deprecated Use {@link AnalyticsImplementationBlueprint} from `@backstage/plugin-app-react` instead.
* @deprecated Use `AnalyticsImplementationBlueprint` from `@backstage/plugin-app-react` instead.
*/
export const AnalyticsImplementationBlueprint = createExtensionBlueprint({
kind: 'analytics',