mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 322 B
TypeScript
import type { CustomerResponse } from '../commonTypes';
import type { CustomerRemoveClient } from './types';
/**
* Remove a customer by its unique identifier.
*
* @returns The customer record that was deleted.
*/
export default function remove({ customerId, config }: CustomerRemoveClient): Promise<CustomerResponse>;