UNPKG

comgate-node

Version:

Comgate Payments API Typescript SDK written in Typescript

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