add api-report

Signed-off-by: Oleg S <97077423+RobotSail@users.noreply.github.com>
This commit is contained in:
Oleg S
2023-02-16 10:21:41 -05:00
parent 8c57bb780f
commit 581b1f8a3a
+13
View File
@@ -3,10 +3,12 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
import { CatalogApi } from '@backstage/catalog-client';
import { CompoundEntityRef } from '@backstage/catalog-model';
import { Config } from '@backstage/config';
import express from 'express';
import { HttpRouterService } from '@backstage/backend-plugin-api';
import { Logger } from 'winston';
import { ScmIntegrations } from '@backstage/integration';
import { UrlReader } from '@backstage/backend-common';
@@ -144,4 +146,15 @@ export interface TodoService {
},
): Promise<ListTodosResponse>;
}
// @alpha (undocumented)
export const todosPlugin: () => BackendFeature;
// Warning: (ae-missing-release-tag) "TodosPluginDependencies" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type TodosPluginDependencies = {
todoReader: TodoService;
http: HttpRouterService;
};
```