@squadco/js
Version:
Simplify the integration process with Squad's comprehensive payment solutions using the Squad JavaScript SDK.
22 lines (21 loc) • 747 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreateSquadClient = void 0;
const pos_1 = __importDefault(require("./pos"));
/**
* @description
* Squad JavaScript | TypeScript SDK
* @author Adedoyin Emmanuel Adeniyi
* @license MIT
* @since 21st of January 2024
* Built with ❣️ by Adedoyin Emmanuel Adeniyi @see https://github.com/adedoyin-emmanuel/
*/
class CreateSquadClient extends pos_1.default {
constructor(publicKey, privateKey, environment) {
super(publicKey, privateKey, environment);
}
}
exports.CreateSquadClient = CreateSquadClient;