backend-plugin-api: cleanup ServiceRef interface

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-04-19 13:53:13 +02:00
parent 67a031e31a
commit 1fedf0c549
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';
};