4
0

exampleJsInterop.js 243 B

123456
  1. // This is a JavaScript module that is loaded on demand. It can export any number of
  2. // functions, and may import other JavaScript modules if required.
  3. export function showPrompt(message) {
  4. return prompt(message, 'Type anything here');
  5. }