/** * It consists of a username and a password. */ export interface BasicAuthCredential { /** Basic auth password. */ password: string; /** Basic auth username. */ username: string; }