shopperman
Version:
shopping cart ui for shopify stores
13 lines • 435 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* CHECKOUT MACHINE ABSTRACT CLASS
* - has a checkout method which takes items and returns a checkout url string
*/
var CheckoutMachineBase = /** @class */ (function () {
function CheckoutMachineBase() {
}
return CheckoutMachineBase;
}());
exports.CheckoutMachineBase = CheckoutMachineBase;
//# sourceMappingURL=checkout-machine-base.js.map