foundation-comms.basicauthinfo
Home > @genesislcap/foundation-comms > BasicAuthInfo
BasicAuthInfo type
Represents basic authentication information.
Signature:
export type BasicAuthInfo = {
type: AuthType & AuthType.BASIC;
username: string;
password: string;
mfaToken?: string;
};
References: AuthType, AuthType.BASIC