UNPKG

@paybyrd/card-collect

Version:

Paybyrd's tool to aid in the creation of credit card info collect forms

11 lines (10 loc) 295 B
import { ENV } from '../types/types'; interface SubmitBody { number?: string; expiration?: string; cvv?: string; holder?: string; } export declare const getTokensAPIURL: (env: ENV) => string; export declare const post: (url: string, body: SubmitBody) => Promise<any>; export {};