UNPKG

@eonx/payment-elements

Version:

- [Configuration](#configuration) - [Create payment card](#create-payment-card) - [Capture payment](#capture-payment) - [Pay now](#pay-now) - [Void payment](#void-payment) - [Types](#types) - [Error handling](#error-handling)

16 lines (15 loc) 463 B
import { CardType } from '../types/card'; export declare const CardMessage: { cardNumberRequired: string; invalidCardNumber: string; invalidCardLength: string; invalidCvvLength: string; incompleteCvv: string; invalidExpiryDate: string; unsupportedCard: string; expiryInPast: string; expiryYearInRange: string; expiryFormatInvalid: string; expiryFullFormatInvalid: string; }; export declare const CardTypes: CardType[];