Build api-reports & add changeset

Signed-off-by: Philipp Hugenroth <philipph@spotify.com>
This commit is contained in:
Philipp Hugenroth
2023-07-28 14:48:38 +02:00
parent 5cf35d1948
commit d008aefef8
3 changed files with 6 additions and 24 deletions
-3
View File
@@ -5,15 +5,12 @@
```ts
import { Backend } from '@backstage/backend-app-api';
import { ServiceFactoryOrFunction } from '@backstage/backend-plugin-api';
import { SharedBackendEnvironment } from '@backstage/backend-plugin-api';
// @public (undocumented)
export function createBackend(options?: CreateBackendOptions): Backend;
// @public (undocumented)
export interface CreateBackendOptions {
// (undocumented)
env?: SharedBackendEnvironment;
// (undocumented)
services?: ServiceFactoryOrFunction[];
}