标签: typescript visual-studio-code
在打字稿中,如果我使用“实现接口”对类名进行自动修复,它将创建带有内联导入的方法:
getInbox(): Observable<import('../../model/Message').Interactions[]> { throw new Error('Method not implemented.'); }
您会看到 import('../../ model / Message'丑陋而愚蠢。如何使它导入文件顶部而不是内联? / p>
答案 0 :(得分:1)
this is an open issue in the TypeScript repository