UNPKG

amazon-pay-async

Version:

API wrapper for Amazon Pay using promises and defining types

10 lines (9 loc) 265 B
import { IReportInfo } from './entities/report.info.type'; export interface IGetReportListByNextTokenRequest { NextToken: string; } export interface IGetReportListByNextTokenResponse { NextToken: string; HasNext: boolean; ReportInfo: IReportInfo; }