mirror of
https://github.com/github/codeql-action.git
synced 2026-04-28 01:48:48 +00:00
Break up Credential type into two interfaces
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
export type Credential = {
|
||||
type: string;
|
||||
host?: string;
|
||||
url?: string;
|
||||
export interface Credential extends Registry {
|
||||
username?: string;
|
||||
password?: string;
|
||||
token?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface Registry {
|
||||
type: string;
|
||||
host?: string;
|
||||
url?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user