error TS1243: ‘async’ modifier cannot be used with ‘abstract’ modifier
Yes you should remove async. You should not force to use async to the class that implements it. There are other ways to return a Promise, not just async. Edit: Since it is not clear for some people why the async is not important. Here a couple of ways to return a promise: async function … Read more