UNPKG

securepay

Version:

https://www.securepay.com.au/

22 lines (21 loc) 506 B
import { SecurepayConstruction } from '../../interfaces/common/construction.interface'; export declare class AuthenticationService { private _utils; private _cache; /** Variables */ private clientId; private clientSecret; private sandbox; private debugLevel; constructor(options: SecurepayConstruction); /** * Get Jwt Token */ getJwtToken(): Promise<string>; /** * Request Token * * @param payload */ auth(): Promise<string>; }