The basic authentication method

interface BasicAuthentication {
    password: string;
    type: "basic";
    username: string;
}

Properties

password: string
type: "basic"
username: string