UNPKG

@lomray/microservice-payment-stripe

Version:

Stripe payment microservice based on NodeJS & inverted json.

10 lines (9 loc) 228 B
/** * Returns decomposed card expiration * NOTE: Compatible with the stripe */ declare const fromExpirationDate: (expirationDate: string) => { year: number; month: number; }; export { fromExpirationDate as default };