@spree/storefront-api-v2-sdk
Version:
Node module to easily integrate your JavaScript or TypeScript application with Spree API V2. You can create an entirely custom Storefront in JS/TS with this package including one page checkout, Single Page Apps, PWAs and so on
17 lines (15 loc) • 319 B
text/typescript
/**
* @deprecated This type is no longer used
*/
export interface IPaymentSource {
[key: string]: {
gateway_payment_profile_id?: string
number?: string
last_digits?: number
month: number | string
year: number | string
verification_value?: string
cc_type?: string
name: string
}
}