api-reports

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
This commit is contained in:
Vincenzo Scamporlino
2023-08-15 01:08:17 +02:00
committed by Patrik Oldsberg
parent c37c19cc37
commit 175e4c3516
3 changed files with 4 additions and 13 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ import { UrlReader } from '@backstage/backend-common';
// @public (undocumented)
export interface Backend {
// (undocumented)
add(feature: BackendFeature): void;
add(feature: BackendFeature | (() => BackendFeature)): void;
// (undocumented)
start(): Promise<void>;
// (undocumented)
@@ -81,7 +81,7 @@ export function createSpecializedBackend(
// @public (undocumented)
export interface CreateSpecializedBackendOptions {
// (undocumented)
services: ServiceFactoryOrFunction[];
defaultServiceFactories: ServiceFactoryOrFunction[];
}
// @public (undocumented)