update API reports for backend system factory function refactor

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-01-12 10:57:11 +01:00
parent ecbec4ec4c
commit d1e86013ef
21 changed files with 159 additions and 119 deletions
+5 -1
View File
@@ -6,11 +6,15 @@
import { BackendFeature } from '@backstage/backend-plugin-api';
import { Config } from '@backstage/config';
import express from 'express';
import { FactoryFunction } from '@backstage/backend-plugin-api/src/types';
import { Logger } from 'winston';
import { PluginDatabaseManager } from '@backstage/backend-common';
// @alpha
export const appPlugin: (options: AppPluginOptions) => BackendFeature;
export const appPlugin: FactoryFunction<
BackendFeature,
[options: AppPluginOptions]
>;
// @alpha (undocumented)
export type AppPluginOptions = {