UNPKG

modem-pay

Version:
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>>; }