UNPKG

mercadopago

Version:
9 lines (8 loc) 318 B
import type { CustomerResponse } from '../commonTypes'; import type { CustomerUpdateClient } from './types'; /** * Update an existing customer's information. * * @returns The updated customer record. */ export default function update({ customerId, body, config }: CustomerUpdateClient): Promise<CustomerResponse>;