mercadopago
Version:
Mercadopago SDK for Node.js
9 lines (8 loc) • 349 B
TypeScript
import type { CustomerCardListClient } from './types';
import type { CustomerCardResponse } from '../commonTypes';
/**
* List all saved payment cards for a customer.
*
* @returns An array of card records belonging to the customer.
*/
export default function list({ customerId, config }: CustomerCardListClient): Promise<CustomerCardResponse[]>;