In typescript, if I do an auto-fix on a class name with "Implement interface", it will create the methods with inline imports :
getInbox(): Observable<import('../../model/Message').Interactions[]> {
throw new Error('Method not implemented.');
}
You can see the import('../../model/Message' which is ugly and stupid. How can I make it import at the top of the file instead of inline ?