gpt4 book ai didi

typescript - 找出 TypeScript 中的函数类型

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

我在 TypeScript 中有两种类型,例如:

type Function1 = (text: string) => number
type Function2 = (count: number) => string

接下来,我有一些功能:

const myFunction = (text: string) => 7 // type Function1

如何找出函数的类型(Function1Function2)?

if (myFunction instanceof Function1) // Not working.
if ('property' in myFunction) // ...?

最佳答案

这是不可能的。类型在编译期间被删除;您无法检查运行时值并确定其注释的类型。

关于typescript - 找出 TypeScript 中的函数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54715866/

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