Udpated api-report

Signed-off-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com>
This commit is contained in:
Andre Wanlin
2023-06-27 11:29:52 -05:00
parent a9cadcc634
commit cb33672100
+20 -2
View File
@@ -3,6 +3,7 @@
> 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 express from 'express';
import { HumanDuration } from '@backstage/types';
import { Languages } from '@backstage/plugin-linguist-common';
@@ -28,6 +29,25 @@ export interface LinguistBackendApi {
processEntities(): Promise<void>;
}
// @public
export const linguistPlugin: (options: LinguistPluginOptions) => BackendFeature;
// @public
export interface LinguistPluginOptions {
// (undocumented)
age?: HumanDuration;
// (undocumented)
batchSize?: number;
// (undocumented)
kind?: string[];
// (undocumented)
linguistJsOptions?: Record<string, unknown>;
// (undocumented)
schedule?: TaskScheduleDefinition;
// (undocumented)
useSourceLocation?: boolean;
}
// @public (undocumented)
export interface PluginOptions {
// (undocumented)
@@ -61,6 +81,4 @@ export interface RouterOptions {
// (undocumented)
tokenManager: TokenManager;
}
// (No @packageDocumentation comment for this package)
```