UNPKG

tempnumber-client

Version:

temp-number.org SMS Typescript client

7 lines (6 loc) 361 B
import { Base } from '../base'; import { StripePaymentIntentType, osType, PaymentStatusResponseType } from '../../types/payments'; export declare class Payments extends Base { createStripePayment(amount: number, os: osType, userAgent: string): Promise<StripePaymentIntentType>; getStripePurchaseStatus(id: string): Promise<PaymentStatusResponseType>; }