Run applescript app from uxp PS plugin?

Is it possible to execute an applescript app from a uxp plugin?
I was able to do this in Extendscript with the following code. I have searched the topic but not finding a solution.

var desc = new ActionDescriptor();
      desc.putString(0, 'processingScript');
      app.putCustomOptions('PStoASMessage', desc, false);
      var myApp = new File('~/Desktop/myApplescript.app');
      myApp.execute();

Anyone have any ideas to launch an applescript app from a uxp plugin?
@kerrishotts

As I understand because of security reasons its quite difficult to do this right now, there is a good discussion about this topic in the XD section check it: https://forums.creativeclouddeveloper.com/t/run-external-application-from-xd-plugin/501

So my work around was to have my plugin save a placeholder file to a hidden folder that launches a Folder Action Script which can then launch my applescript app.