@fabrix/spool-cart
Version:
Spool - eCommerce Spool for Fabrix
8 lines (7 loc) • 324 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const joi = require("joi");
exports.capture = joi.array().items(joi.object().keys({
transaction: joi.alternatives().try(joi.number(), joi.string()),
transactions: joi.array().items(joi.alternatives().try(joi.number(), joi.string())),
}));