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:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user