UNPKG

comgate-node

Version:

Comgate Payments API Typescript SDK written in Typescript

16 lines (14 loc) 221 B
export type HttpMethod = | "POST" | "GET" | "PUT" | "PATCH" | "DELETE" | "OPTIONS" | "HEAD" ; export type ComgateClientProps = { merchant: number; secret: string; test: boolean; }