Poq.SDK.Node

Home > @poq/sdk-sfcc > AuthInfo

AuthInfo type

Information about auth options Basic or Bearer.

Signature:

export declare type AuthInfo = {
    token: string;
} | {
    login: string;
    password: string;
};