UNPKG

bluesnap

Version:
8 lines (7 loc) 345 B
import { HttpClient } from '../http/HttpClient'; import { RefundRequestQueryParams, RefundTransactionResponse } from './models/RefundTransaction'; export declare class RefundGateway { private http; constructor(http: HttpClient); refund(transactionId: string, params?: RefundRequestQueryParams): Promise<RefundTransactionResponse>; }