UNPKG

mercadopago

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