Home Manual Reference Source

src/sap/pdms/ipro/api/Framework.js

/**
 * @typedef {Object} Framework
 * @desc the ui framework being used by the ipro. Exposed into global namespace `sap.pdms.ipro.api.Framework`
 * @deprecated In PDMS 1.0 SP00 the application was loading UI5 and NATIVE (other) ipros differently. As of PDMS 1.0 SP02 all ipros are loaded in the same way, hence this information is not required anymore.
 * @property {string} UI5 when using sapui5.
 * @property {string} NATIVE when using any other framework than ui5.
 */
export default Object.freeze({
  UI5: 'UI5',
  NATIVE: 'NATIVE'
});