amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
9 lines (8 loc) • 363 B
TypeScript
import { IConfiguration } from '../classes/config';
import { ITokenInformationResponse } from '../types/token.information.type';
export declare class Auth {
private readonly requestHandler;
constructor(config: IConfiguration);
getTokenInfo(accessToken: string): Promise<ITokenInformationResponse>;
getProfile(accessToken: string): Promise<any>;
}