typescript 泛型调用签名的对象字面量来定义泛型函数报错

使用带有调用签名的对象字面量来定义泛型函数

interface IGenericIdentityFn1 {

}
function identity<T>(arg: T): T {
      return arg;
    }
const myIdentityFn: {<T>(arg: T): T} = identity;
const myIdentityFn2: IGenericIdentityFn1 = identity;

这里两种方式都报错
ERROR:

callable-types: Type literal has only a call signature — use <T>(arg: T) => T instead

请问需要怎么解决。

阅读 3.8k
3 个回答
const myIdentityFn = identity;

改成这样就好了

const myIdentityFn: <T>(arg: T) => T = identity;

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进