@abaplint/core
Version:
abaplint - Core API
21 lines • 590 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomizingAttributes = void 0;
const _abstract_object_1 = require("./_abstract_object");
class CustomizingAttributes extends _abstract_object_1.AbstractObject {
getType() {
return "CUS2";
}
getAllowedNaming() {
return {
maxLength: 20,
allowNamespace: true,
};
}
getDescription() {
// todo
return undefined;
}
}
exports.CustomizingAttributes = CustomizingAttributes;
//# sourceMappingURL=customizing_attributes.js.map