How to get acess of group.entries in bpmn replace

Hello folks

anybody help me how to get acess of group entries i need to do some changes
in angular

 group.entries.push(EntryFactory.selectBox({
                id: 'elementTemplate-chooser',
                label: translate('Bot Name'),
                modelProperty: 'camunda:modelerTemplate',
                selectOptions: options,
                set: function(element, properties) {
                    return applyTemplate(element, properties[TEMPLATE_ATTR], ElementTemplates);
                },
                disabled: function() {
                    var template = getTemplate(element, ElementTemplates);

                    return template && isDefaultTemplate(template);
                }
            }));

Why do you need access to those entries?
What changes do you want to make?
What do you want to achieve?

I want to use this in angular component and i want to put some new field like bot namebotissuename
you can see when click on custom element this type of dropdown bot Name should be added in properties panel

Have you seen this example: https://github.com/bpmn-io/bpmn-js-examples/tree/master/properties-panel-extension

yes i look into this but how can i import in angular component like this below code
var entryFactory = require(‘bpmn-js-properties-panel/lib/factory/EntryFactory’);

var is = require(‘bpmn-js/lib/util/ModelUtil’).is;

module.exports = function(group, element) {
// only return an entry, if the currently selected element is a start event
if (is(element, ‘bpmn:StartEvent’)) {
group.entries.push(entryFactory.textField({
id : ‘spell’,
description : ‘Apply a black magic spell’,
label : ‘Spell’,
modelProperty : ‘spell’
}));
}
};
so module.export how can i use it in angular becuase its through error could you please help me out in this

Get familiar with modules and the different approaches (CommonJS and ES6 modules) and you should be able to resolve your issue.

i need this example in angular i just need to access group element in proeprties panel thats it could please guide me how can i directly acess it

Can you explain what you mean by that?