UNPKG

mercadopago

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