UNPKG

ngx-loovpay

Version:

ngx-loovpay is a solution that can be integrated into Angular applications, giving developers the possibility of integrating them into merchant applications for the purpose of collecting payments.

16 lines (15 loc) 741 B
import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Config, PaymentCard, PaymentMobile, LoovResponse, CheckRefResponse, PayOut } from './ngx-loovPay.interface'; import * as i0 from "@angular/core"; export declare class NgxLoovService { private config; private httpclient; configData: Config; constructor(config: Config, httpclient: HttpClient); initPayment(payload: PaymentMobile | PaymentCard): Observable<LoovResponse>; checkStatus(reference: string): Observable<CheckRefResponse>; payOut(payload: PayOut): Observable<LoovResponse>; static ɵfac: i0.ɵɵFactoryDeclaration<NgxLoovService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<NgxLoovService>; }