UNPKG

@flexbase/http-client-middleware

Version:
10 lines (9 loc) 498 B
import { AuthenticationTokenAccessorBase } from '../authentication.token.accessor.base.js'; import { PasswordCredentials } from './password.credentials.js'; /** Represents a type used to perform password authentication requests */ export declare class PasswordAuthenticationTokenAccessor extends AuthenticationTokenAccessorBase<PasswordCredentials> { protected generateBody(credentials: PasswordCredentials, refreshToken: string | undefined): { url: string; body: any; }; }