When using TypeScript, if I perform an auto-fix on a class name by selecting "Implement interface", it will generate the methods with inline imports like this:
getInbox(): Observable<import('../../model/Message').Interactions[]> {
throw new Error('Method not implemented.');
}
The inline import import('../../model/Message' looks messy and inefficient. Is there a way to make it so that the import is placed at the top of the file instead of being inline?