Got rid of the last brace-typed and hyphen-less params etc
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
@@ -432,9 +432,4 @@ export class SingleInstanceGithubCredentialsProvider
|
||||
static create: (config: GitHubIntegrationConfig) => GithubCredentialsProvider;
|
||||
getCredentials(opts: { url: string }): Promise<GithubCredentials>;
|
||||
}
|
||||
|
||||
// Warnings were encountered during analysis:
|
||||
//
|
||||
// src/gitlab/config.d.ts:29:68 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
|
||||
// src/gitlab/config.d.ts:29:63 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
|
||||
```
|
||||
|
||||
@@ -28,13 +28,13 @@ const GITLAB_API_BASE_URL = 'https://gitlab.com/api/v4';
|
||||
*/
|
||||
export type GitLabIntegrationConfig = {
|
||||
/**
|
||||
* The host of the target that this matches on, e.g. "gitlab.com".
|
||||
* The host of the target that this matches on, e.g. `gitlab.com`.
|
||||
*/
|
||||
host: string;
|
||||
|
||||
/**
|
||||
* The base URL of the API of this provider, e.g.
|
||||
* "https://gitlab.com/api/v4", with no trailing slash.
|
||||
* `https://gitlab.com/api/v4`, with no trailing slash.
|
||||
*
|
||||
* May be omitted specifically for public GitLab; then it will be deduced.
|
||||
*/
|
||||
@@ -48,10 +48,10 @@ export type GitLabIntegrationConfig = {
|
||||
token?: string;
|
||||
|
||||
/**
|
||||
* The baseUrl of this provider, e.g. "https://gitlab.com", which is passed
|
||||
* The baseUrl of this provider, e.g. `https://gitlab.com`, which is passed
|
||||
* into the GitLab client.
|
||||
*
|
||||
* If no baseUrl is provided, it will default to https://${host}
|
||||
* If no baseUrl is provided, it will default to `https://${host}`
|
||||
*/
|
||||
baseUrl: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user