UNPKG

paypal-rest-api

Version:

A typescript module for integrating with PayPal REST APIs.

7 lines (6 loc) 352 B
/// <reference types="requestretry" /> /// <reference types="request" /> import { RequestResponse, UriOptions } from "request"; import { RequestRetryOptions } from "requestretry"; export declare type RequestOptions = RequestRetryOptions & UriOptions; export declare type RequestMethod = (options?: Partial<RequestOptions>) => Promise<RequestResponse>;