UNPKG

ngx-jenga-api

Version:

Angular wrapper for Equity's Jenga API. Still in progress

15 lines (14 loc) 771 B
import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { IMerchantPayments, IrecbillPayments, IrecMerchantPayments } from '../interfaces'; import * as i0 from "@angular/core"; export declare class ApiService { private api; constructor(api: HttpClient); getAllEazzyPayMerchants(page: number, per_page: number): Observable<any>; getAllBillers(page: number, per_page: number, category: string): Observable<any>; receiveBillPayments(data: IrecbillPayments): Observable<IrecbillPayments>; receiveMerchantPayments(data: IMerchantPayments): Observable<IrecMerchantPayments>; static ɵfac: i0.ɵɵFactoryDeclaration<ApiService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<ApiService>; }