oca_package
Version:
The wrapper of OCA bundle to generate OCA Package at ADC
13 lines (12 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Attribute {
constructor(attribute) {
this.name = attribute;
this.attribute_separators = {};
}
setAttributeSeparators(attribute_separators) {
this.attribute_separators = attribute_separators;
}
}
exports.default = Attribute;