ESLint抱怨缺少JSDoc返回声明,尽管我在那里放置了一个@inheritdoc
标记:
这是我继承的接口的相关部分:
export interface L2BlockSource {
/**
* Gets the sync status of the L2 block source.
* @returns The sync status of the L2 block source.
*/
getSyncStatus(): SyncStatus;
}
有谁知道出什么问题了吗?谢谢
1条答案
按热度按时间mnemlml81#
我认为ESlint没有显示出实际的问题。尝试从父类方法中删除逻辑,只留下一个空的返回。