gpt4 book ai didi

typescript - 使用返回 "this"的调用签名和方法实现接口(interface)

转载 作者:搜寻专家 更新时间:2023-10-30 21:45:45 26 4
gpt4 key购买 nike

前言:我们的团队正在开发一个基于 d3 构建的库。由于我们使用的是 TypeScript,因此我们还使用了来自 DefinitelyTyped 的 d3 类型。尝试使用 ScaleOrdinal 等接口(interface)时会出现以下问题以及那里的许多其他人。


假设我们有一个包含调用签名和附加属性的接口(interface):

export interface Foo<T> {
// Let's pretend this will be the identity function
(arg: T): T;

// Let's pretend that this will be a no-op function
// Note that this returns "this"
doFoo(): this;
}

我们如何才能正确并以类型安全的方式实现这样的接口(interface)[1]?经过研究,我发现了以下相关问题,所有这些问题都略有不同和/或相当陈旧。我想知道我们是否遗漏了什么,或者是否要在这里向 TypeScript 团队提出问题:

  1. How to make a class implement a call signature in Typescript?
  2. TypeScript: Implement interface with both call signature and constructor signature
  3. TypeScript: Implement an interface with both call signature and indexing signature

请注意,接口(interface)对我们来说是外部的,因此实现它是我们唯一的选择。


¹ 为了这个问题,我希望实现明确地重申所有类型注释。

最佳答案

在最新版本的 typescript(3.2 或 3.3 不确定是哪个)中,当您声明一个函数时,您还可以为该函数分配额外的属性,typescript 会将这些视为这些属性的定义,而不会提示它们没有被定义定义:

export interface Foo<T> {
(arg: T): T;
doFoo(): this;
}

function foo(arg: number) : number {
return arg
}
foo.doFoo = function <TThis extends typeof foo>(this: TThis): TThis { // no polymorphic this in simple functions
return this
}

let o: Foo<number> = foo; // foo is compatible with Foo<number>

旧的做法是使用 Object.assign 创建具有额外属性的函数:

let o: Foo<number> = Object.assign(function (arg: number): number {
return arg
}, {
doFoo: function <TThis>(this: TThis): TThis {
return this
}
})

关于typescript - 使用返回 "this"的调用签名和方法实现接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55375863/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com