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