UNPKG

mtn-momo-client

Version:

A collection of utils to interact with the mtn-momo api

14 lines (13 loc) 558 B
import { AxiosInstance } from 'axios'; import { APIVersion, Product, TargetEnvironment } from '../../types'; type CreateProductClientOptions = { subscriptionKey: string; targetEnvironment: TargetEnvironment; targetProduct: Product; apiKey: string; userId: string; apiVersion?: APIVersion; }; declare const createProductClient: ({ subscriptionKey, targetEnvironment, apiVersion, targetProduct, userId, apiKey, }: CreateProductClientOptions) => AxiosInstance; export { createProductClient }; export type { CreateProductClientOptions };