chore: make the api-docs pretty again

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-07-14 20:44:48 +02:00
parent 8e38300d7c
commit cd43895668
2 changed files with 87 additions and 57 deletions
+29 -32
View File
@@ -3,7 +3,6 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { CatalogClient } from '@backstage/catalog-client';
import { Config } from '@backstage/config';
import { EntityName } from '@backstage/catalog-model';
@@ -15,50 +14,48 @@ export function createRouter(options: RouterOptions): Promise<express.Router>;
// @public
export class DefaultJenkinsInfoProvider implements JenkinsInfoProvider {
// (undocumented)
static fromConfig(options: {
config: Config;
catalog: CatalogClient;
}): DefaultJenkinsInfoProvider;
// (undocumented)
getInstance(opt: {
entityRef: EntityName;
jobFullName?: string;
}): Promise<JenkinsInfo>;
// (undocumented)
static readonly NEW_JENKINS_ANNOTATION = "jenkins.io/job-full-name";
// (undocumented)
static readonly OLD_JENKINS_ANNOTATION = "jenkins.io/github-folder";
// (undocumented)
static fromConfig(options: {
config: Config;
catalog: CatalogClient;
}): DefaultJenkinsInfoProvider;
// (undocumented)
getInstance(opt: {
entityRef: EntityName;
jobFullName?: string;
}): Promise<JenkinsInfo>;
// (undocumented)
static readonly NEW_JENKINS_ANNOTATION = 'jenkins.io/job-full-name';
// (undocumented)
static readonly OLD_JENKINS_ANNOTATION = 'jenkins.io/github-folder';
}
// @public (undocumented)
export interface JenkinsInfo {
// (undocumented)
baseUrl: string;
// (undocumented)
headers?: Record<string, string | string[]>;
// (undocumented)
jobFullName: string;
// (undocumented)
baseUrl: string;
// (undocumented)
headers?: Record<string, string | string[]>;
// (undocumented)
jobFullName: string;
}
// @public (undocumented)
export interface JenkinsInfoProvider {
// (undocumented)
getInstance(options: {
entityRef: EntityName;
jobFullName?: string;
}): Promise<JenkinsInfo>;
// (undocumented)
getInstance(options: {
entityRef: EntityName;
jobFullName?: string;
}): Promise<JenkinsInfo>;
}
// @public (undocumented)
export interface RouterOptions {
// (undocumented)
jenkinsInfoProvider: JenkinsInfoProvider;
// (undocumented)
logger: Logger_2;
// (undocumented)
jenkinsInfoProvider: JenkinsInfoProvider;
// (undocumented)
logger: Logger_2;
}
// (No @packageDocumentation comment for this package)
```