I have a file, which must be loaded asynchronously, so I made a function, which loads this file and returns the Promise:
export function load() {
// ...
return import(filename);
}
What is the return type of this Function? Promise<any> works, but it feels very weird. I'd like to write the signature as.
export function load() -> Promise<???>;