UNPKG

anypay.io

Version:

Module for the AnyPay payment system.

10 lines (9 loc) 278 B
import express from "express"; export declare type THttpMethod = "GET" | "POST"; export interface IServerOptions { method?: THttpMethod | THttpMethod[]; logging?: true; url: string; port: number; handler(req: express.Request, res: express.Response): void; }