@medusajs/utils
Version:
Medusa utilities functions shared by Medusa core and Modules
18 lines • 475 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.BooleanProperty = void 0;
const base_1 = require("./base");
/**
* The BooleanProperty class is used to define a boolean
* property
*/
class BooleanProperty extends base_1.BaseProperty {
constructor() {
super(...arguments);
this.dataType = {
name: "boolean",
};
}
}
exports.BooleanProperty = BooleanProperty;
//# sourceMappingURL=boolean.js.map
;