I have a JavaScript file that contains some functions, I want to import those functions in a ts file, I have tried using the technique below but it didn't work
import * as downloadExport from "./leaflet_export";
It raises the following error:
Any ideas about how to import functions from a js file into ts file??
