api report fixup

Signed-off-by: Emma Indal <emma.indahl@gmail.com>
This commit is contained in:
Emma Indal
2022-03-14 21:54:55 +01:00
parent 1bc516bdfb
commit da7d91fcdc
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -12,7 +12,7 @@ import { Entity } from '@backstage/catalog-model';
import express from 'express';
import { GeneratorBuilder } from '@backstage/plugin-techdocs-node';
import { Knex } from 'knex';
import { Logger } from 'winston';
import { Logger as Logger_2 } from 'winston';
import { Permission } from '@backstage/plugin-permission-common';
import { PluginCacheManager } from '@backstage/backend-common';
import { PluginEndpointDiscovery } from '@backstage/backend-common';
@@ -71,7 +71,7 @@ export type OutOfTheBoxDeploymentOptions = {
preparers: PreparerBuilder;
generators: GeneratorBuilder;
publisher: PublisherBase;
logger: Logger;
logger: Logger_2;
discovery: PluginEndpointDiscovery;
database?: Knex;
config: Config;
@@ -82,7 +82,7 @@ export type OutOfTheBoxDeploymentOptions = {
// @public
export type RecommendedDeploymentOptions = {
publisher: PublisherBase;
logger: Logger;
logger: Logger_2;
discovery: PluginEndpointDiscovery;
config: Config;
cache: PluginCacheManager;
@@ -102,7 +102,7 @@ export type ShouldBuildParameters = {
// @public
export type TechDocsCollatorFactoryOptions = {
discovery: PluginEndpointDiscovery;
logger: Logger;
logger: Logger_2;
tokenManager: TokenManager;
locationTemplate?: string;
catalogClient?: CatalogApi;
@@ -113,7 +113,7 @@ export type TechDocsCollatorFactoryOptions = {
// @public
export type TechDocsCollatorOptions = {
discovery: PluginEndpointDiscovery;
logger: Logger;
logger: Logger_2;
tokenManager: TokenManager;
locationTemplate?: string;
catalogClient?: CatalogApi;
+1 -1
View File
@@ -274,7 +274,7 @@ export { techdocsPlugin };
// @public
export const TechDocsReaderPage: (
props: TechDocsReaderPageProps,
) => JSX.Element | null;
) => JSX.Element;
// @public
export const TechDocsReaderPageHeader: (