mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 318 B
TypeScript
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>;