Home Manual Reference Source

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

/**
 * @typedef {Object} ContextSelector
 * @desc enum of ContextSelector's . Exposed into global namespace `sap.pdms.ipro.api.ContextSelector`
 * @property {string} SELECTED return only selected items in a given context
 * @property {string} ALL return all items in a given context
 */
export default Object.freeze({
  SELECTED: 'SELECTED',
  ALL: 'ALL'
});