fix missing link in api report

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-10-28 21:47:29 +02:00
parent 85cc6bd6aa
commit 41009bb3a5
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -32,7 +32,6 @@ export type TaskFunction =
// @public
export class TaskScheduler {
constructor(databaseManager: DatabaseManager, logger: Logger_2);
// Warning: (ae-unresolved-link) The @link reference could not be resolved: The package "@backstage/backend-tasks" does not have an export "PluginTaskManager"
forPlugin(pluginId: string): PluginTaskScheduler;
// (undocumented)
static fromConfig(
@@ -54,7 +54,7 @@ export class TaskScheduler {
* Instantiates a task manager instance for the given plugin.
*
* @param pluginId - The unique ID of the plugin, for example "catalog"
* @returns A {@link PluginTaskManager} instance
* @returns A {@link PluginTaskScheduler} instance
*/
forPlugin(pluginId: string): PluginTaskScheduler {
const databaseFactory = memoize(async () => {