UNPKG

mercadopago

Version:
16 lines (15 loc) 416 B
/** * Request types for the get advanced-payment operation. * * @module advancedPayment/get/types */ import type { MercadoPagoConfig } from '../../../mercadoPagoConfig'; import type { Options } from '../../../types'; export declare type AdvancedPaymentGetClient = { id: string; config: MercadoPagoConfig; }; export declare type AdvancedPaymentGetData = { id: string; requestOptions?: Options; };