HttpAuth type
Signature:
export type HttpAuth = {
type: "basic";
username: string;
password: string;
} | {
type: "bearer";
token: string;
};
Signature:
export type HttpAuth = {
type: "basic";
username: string;
password: string;
} | {
type: "bearer";
token: string;
};