hana-cli
Version:
HANA Developer Command Line Interface
18 lines (15 loc) • 374 B
JavaScript
/* eslint-disable no-undef */
/*eslint-env es6 */
sap.ui.define([
"sap/hanacli/common/Component"
], function (UIComponent) {
"use strict"
return UIComponent.extend("sap.hanacli.systemInfo.Component", {
metadata: {
manifest: "json"
},
init: function () {
this.superInit()
}
})
})