mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 403 B
TypeScript
import type { PointCreatePaymentIntentClient } from './types';
import type { PaymentIntentResponse } from '../commonTypes';
/**
* Create a payment intent on the specified Point device.
*
* @returns The newly created payment intent with its current state.
*/
export default function createPaymentIntent({ device_id, request, config }: PointCreatePaymentIntentClient): Promise<PaymentIntentResponse>;