/** * @public */ export type GitlabCredentials = { headers?: { [name: string]: string; }; token?: string; }; /** * @public */ export interface GitlabCredentialsProvider { getCredentials(opts: { url: string; }): Promise; }