UNPKG

amazon-pay-async

Version:

API wrapper for Amazon Pay using promises and defining types

8 lines (7 loc) 228 B
import { ICaptureDetails } from './entities/capture.details.type'; export interface IGetCaptureDetailsRequest { AmazonCaptureId: string; } export interface IGetCaptureDetailsResponse { CaptureDetails: ICaptureDetails; }