paystack-sdk 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/paystack.d.ts +2 -2
- package/dist/paystack.js +1 -1
- package/package.json +1 -1
package/dist/paystack.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ICharge } from './charge
|
|
1
|
+
import { ICharge } from './charge';
|
|
2
2
|
import { IPlan } from './plan/plan';
|
|
3
3
|
import { ITransaction } from './transaction/transaction';
|
|
4
4
|
/**
|
|
@@ -7,7 +7,7 @@ import { ITransaction } from './transaction/transaction';
|
|
|
7
7
|
*/
|
|
8
8
|
export default class Paystack {
|
|
9
9
|
readonly key: string;
|
|
10
|
-
private http;
|
|
10
|
+
private readonly http;
|
|
11
11
|
charge: ICharge;
|
|
12
12
|
transaction: ITransaction;
|
|
13
13
|
plan: IPlan;
|
package/dist/paystack.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const axios_1 = require("axios");
|
|
4
|
-
const charge_1 = require("./charge
|
|
4
|
+
const charge_1 = require("./charge");
|
|
5
5
|
const plan_1 = require("./plan/plan");
|
|
6
6
|
const transaction_1 = require("./transaction/transaction");
|
|
7
7
|
/**
|