[linguist-backend]: update changeset and update api-report

Signed-off-by: Thomas Camargo <camargothomas@gmail.com>
This commit is contained in:
Thomas Camargo
2023-02-23 10:09:34 -07:00
parent 4219467b94
commit 20eba13f1d
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -3,3 +3,7 @@
---
Allow kind to be configurable
```ts
return createRouter({ schedule: schedule, kind: ['Component'] }, { ...env });
```
+3
View File
@@ -34,6 +34,7 @@ export class LinguistBackendApi {
age?: HumanDuration,
batchSize?: number,
useSourceLocation?: boolean,
kind?: string[],
);
// (undocumented)
getEntityLanguages(entityRef: string): Promise<Languages>;
@@ -79,6 +80,8 @@ export interface PluginOptions {
// (undocumented)
batchSize?: number;
// (undocumented)
kind?: string[];
// (undocumented)
schedule?: TaskScheduleDefinition;
// (undocumented)
useSourceLocation?: boolean;