How to get other plugin's parameters when developing plugin?

I am using the plugin: obsidian-html-server, which has custom parameter configuration.

  1. When developing other plugins, can I access the parameters defined by obsidian-html-server?

  2. Can I retrieve configuration parameters from obsidian-html-server, such as the port number?
    image

Generally, a plugin instance will have a settings field (or other configuration objects).
You can directly obtain the plugin instance by using app.plugins.getPlugin('other-plugin-id') to access its state and settings.