UNPKG

mercadopago

Version:
9 lines (8 loc) 411 B
import type { PaymentIntentResponse } from '../commonTypes'; import type { PointSearchPaymentIntentClient } from './types'; /** * Retrieve the details of a payment intent by its ID. * * @returns The payment intent details including state, amount, and device info. */ export default function searchPaymentIntent({ payment_intent_id, config }: PointSearchPaymentIntentClient): Promise<PaymentIntentResponse>;