UNPKG

mtn-momo-client

Version:

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

16 lines (12 loc) 288 B
enum TargetEnvironment { Sandbox = 'sandbox', Production = 'production', } enum Product { Collection = 'collection', Disbursement = 'disbursement', Remittance = 'remittance', } type APIVersion = 'v1' | 'v2'; export { TargetEnvironment, Product }; export type { APIVersion };