Merge pull request #24385 from backstage/rugvip/toString

backend-plugin-api: cleanup ServiceRef interface
This commit is contained in:
Patrik Oldsberg
2024-04-19 16:20:28 +02:00
committed by GitHub
3 changed files with 5 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-plugin-api': patch
---
Removed explicit `toString()` method from `ServiceRef` type.
@@ -570,7 +570,6 @@ export type ServiceRef<
id: string;
scope: TScope;
T: TService;
toString(): string;
$$type: '@backstage/ServiceRef';
};
@@ -44,8 +44,6 @@ export type ServiceRef<
*/
T: TService;
toString(): string;
$$type: '@backstage/ServiceRef';
};