Skip to content

Commit 793b00f

Browse files
committed
Minor bug fixes
1 parent f35922b commit 793b00f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/refund/refund.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import { BadRequest } from '../interface';
1010

1111
export class Refund {
12-
http: Axios;
12+
private http: Axios;
1313
constructor(http: Axios) {
1414
this.http = http;
1515
}

src/transfer/transfer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface BadRequest {
1818
}
1919

2020
export class Transfer {
21-
http: Axios;
21+
private http: Axios;
2222
public control: Control;
2323
constructor(http: Axios) {
2424
this.http = http;

0 commit comments

Comments
 (0)