UNPKG

modem-pay

Version:

A TypeScript SDK for integrating with the Modem Pay payment gateway, enabling seamless payment processing and financial services in your applications.

7 lines (6 loc) 226 B
import { List } from "../types"; export default interface Core<T> { create(params: Partial<T> | T | any, options?: any): Promise<T | any>; retrieve(id: string): Promise<T>; list(options?: any): Promise<List<T>>; }