UNPKG

shipy-sdk-js

Version:

Shipy Payment Gateway SDK for JavaScript/TypeScript

12 lines (11 loc) 283 B
import { IPaymentMethod } from './IPaymentMethod'; export interface IPaymentMethodFactory { /** * Create a credit card payment method */ createCreditCard(): IPaymentMethod; /** * Create a mobile payment method */ createMobile(): IPaymentMethod; }