小天管理 发表于 2024年6月25日 发表于 2024年6月25日 比如我定义了一个类型带有泛型参数<T>```typescriptexport interface ReportTreeNode<T extends BaseDataType> { data: T children: ReportTreeNode<T>[] relationshipWithParent: RelationshipWithParent nodeType: NodeType cellInfo?: CellInfo}```但是我在写一些其他工具方法时,是不关心具体类型 T 的,在 java 中这个种情况可以写问号`?`代替,但是 typescript 不行,如果我写 any 的话,eslint 又提示我应该用 never ,我改成 never 后,调用这个方法时又报`<never>不能赋值给<T>`
已推荐帖子