I’m trying to access PluginManager API but seems it returns undefined when I try to get it.
I saw in the documentation this is the right code:
const { pluginManager } = require("uxp");
Tried also this:
const pluginManager = require("uxp").pluginManager;
Same retults, both returns “undefined”.
Does PluginManager isn’t available yet or what is happening?
I want to use to for this command I saw in the documentation:
PluginManager.showPanel(PANELID);
Any help is very much appreciated.
Mario OM