Can send via JS global function declaration :-)
xxxxxxxxxx
// myApp.js
function myFx() {
window.sendToSvelte(data)
}
// myComponent.svelte
<script>
export let prop = []
window.sendToSvelte = (data) => {
prop = data
}
</script>