I have an Interface and a Class which implements the methods, I didn't find a answer to my Problem by now. I have a function defined myAsyncFunction() in the Interface and i want to make it async:
export interface State {
state: Class;
myAsyncFunction(): any;
}