UNPKG

mercadopago

Version:
9 lines (8 loc) 320 B
import type { CustomerGetClient } from './types'; import type { CustomerResponse } from '../commonTypes'; /** * Retrieve a customer by its unique identifier. * * @returns The customer record matching the given ID. */ export default function get({ customerId, config }: CustomerGetClient): Promise<CustomerResponse>;