Merge pull request #14238 from Bonial-International-GmbH/pjungermann/remove-default-visibility

chore: remove explicit default visibility at `config.d.ts` files
This commit is contained in:
Patrik Oldsberg
2022-10-20 13:48:52 +02:00
committed by GitHub
6 changed files with 15 additions and 21 deletions
-5
View File
@@ -164,7 +164,6 @@ export interface Config {
/**
* GitHub Apps configuration
* @visibility backend
*/
apps?: Array<{
/**
@@ -233,7 +232,6 @@ export interface Config {
googleGcs?: {
/**
* Service account email used to authenticate requests.
* @visibility backend
*/
clientEmail?: string;
/**
@@ -265,7 +263,6 @@ export interface Config {
/**
* Account access key used to authenticate requests.
* @visibility backend
*/
accessKeyId?: string;
/**
@@ -276,13 +273,11 @@ export interface Config {
/**
* ARN of the role to be assumed
* @visibility backend
*/
roleArn?: string;
/**
* External ID to use when assuming role
* @visibility backend
*/
externalId?: string;
}>;