UNPKG

ss-sslcommerz

Version:

TypeScript-compatible SSLCommerz payment gateway wrapper for Node.js, NestJS, and Express.

8 lines (7 loc) 238 B
interface HttpCallParams { url: string; method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "UPDATE"; data?: any; } declare const httpCall: ({ url, method, data, }: HttpCallParams) => Promise<any>; export default httpCall;