mercadopago
Version:
Mercadopago SDK for Node.js
13 lines (12 loc) • 399 B
TypeScript
import type { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import type { Options } from '../../../types';
export declare type PointCancelPaymentIntentClient = {
device_id: string;
payment_intent_id: string;
config: MercadoPagoConfig;
};
export declare type PointCancelPaymentIntentData = {
device_id: string;
payment_intent_id: string;
requestOptions?: Options;
};