fix(plugins/scaffolder-backend-module-github): api report config undocumented

Signed-off-by: Matheus Castiglioni <mahenrique94@users.noreply.github.com>
This commit is contained in:
Matheus Castiglioni
2024-05-05 22:12:18 -03:00
parent a35ef27ead
commit b000ee6fa2
2 changed files with 3 additions and 1 deletions
@@ -128,7 +128,6 @@ export interface CreateGithubPullRequestActionOptions {
} | null>;
}
>;
// (undocumented)
config: Config;
githubCredentialsProvider?: GithubCredentialsProvider;
integrations: ScmIntegrationRegistry;
@@ -101,6 +101,9 @@ export interface CreateGithubPullRequestActionOptions {
} | null>;
}
>;
/**
* An instance of {@link @backstage/config#Config} that will be used in the action.
*/
config: Config;
}