UNPKG

mercadopago

Version:
9 lines (8 loc) 322 B
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>;