UNPKG

mercadopago

Version:
9 lines (8 loc) 403 B
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>;