File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { Transaction } from './transaction/transaction';
1616import { Transfer } from './transfer/transfer' ;
1717import { BulkCharge } from './bulkcharge/bulkcharge' ;
1818import { Verification } from './verification/verification' ;
19+ import { Refund } from './refund/refund' ;
1920
2021/**
2122 * Paystack SDK
@@ -40,6 +41,7 @@ export class Paystack {
4041 public invoice : Invoice ;
4142 public settlement : Settlement ;
4243 public recipient : Recipient ;
44+ public refund : Refund ;
4345 public verification : Verification ;
4446 constructor ( private readonly key : string ) {
4547 this . http = new Axios ( {
@@ -69,6 +71,7 @@ export class Paystack {
6971 this . invoice = new Invoice ( this . http ) ;
7072 this . settlement = new Settlement ( this . http ) ;
7173 this . recipient = new Recipient ( this . http ) ;
74+ this . refund = new Refund ( this . http ) ;
7275 this . verification = new Verification ( this . http ) ;
7376 }
7477}
You can’t perform that action at this time.
0 commit comments