here is my typescript code
async function get_string(){
return "hellow"
}
var the_string=get_string()
in the code, the type of the_string is Promise<string> I want to somehow to remove the Promise from the type of the_string so its type is just string. maybe using the generics feature of typescript
edit: I have a good use case for this, I am working on a JavaScript interpreter that automatically resolves promises