@open-kappa/myjson
Version:
A simple JSON management library.
23 lines • 678 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MyJsonProperties = void 0;
/**
* @brief Hidden properties of MyJson.
*/
class MyJsonProperties {
/**
* @brief Constructor.
* @param {boolean} isMandatory True if the object must appear in the
* hierarchy.
* @param {string} name The name of the object.
*/
constructor(isMandatory, name) {
this.isMandatory = isMandatory;
this.isInitialized = false;
this.name = name;
this.constraints = [];
}
}
exports.MyJsonProperties = MyJsonProperties;
exports.default = MyJsonProperties;
//# sourceMappingURL=MyJsonProperties.js.map