gigya-node
Version:
Gigya SDK for NodeJS
7 lines (5 loc) • 337 B
text/typescript
import GigyaResponse from '../interfaces/gigya-response';
import {BaseRequest} from "../RequestFactory";
import {CoreOptions} from "request";
export type ProxyHttpRequest = <R>(endpoint: string, host: string, requestParams: BaseRequest, options?: CoreOptions | undefined) => Promise<GigyaResponse & R>;
export default ProxyHttpRequest;