excuse me, now that I have the time, route tool function file, how can I unify the proxy output in index?
in time.js
export cosnt time1
export cosnt time2
in route.js
export cosnt route1
export cosnt route2
how to output time.js and route.js as a whole in index.js
and then you can
import {time1} from "./index"
I use
now.export * from "./time"
export * from "./route"
then report exports is not defined?
in addition, there are many functions in time and route.