rajaongkir-v2
Version:
A package to connect with Rajaongkir API
16 lines (15 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const constant_1 = require("./constant");
class RajaOngkir {
constructor(apiKey) {
this.apiKey = apiKey;
}
getKey() {
return this.apiKey;
}
getBaseUrl() {
return constant_1.baseUrl;
}
}
exports.default = RajaOngkir;