gpt4 book ai didi

typescript - 在接口(interface)声明中,括号是什么意思?

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

一个例子:

interface IResourceService {
(url: string, paramDefaults?: any,
actions?: any, options?: IResourceOptions): IResourceClass<IResource<any>>;
}

语法 (variable: type): Type; 是什么意思?如何实现这个接口(interface)?

最佳答案

他们声明了一个函数。

这是一个可以直接调用的接口(interface),指定参数和返回类型。请记住,TS 接口(interface)不是具体的:您无法实例化它们,您无法直接引用它们(例如,foo instanceof interfaceFoo 是非法的),并且它们不会出现在输出代码中。

TS 接口(interface)只是定义对象预期形状的契约。该形状可以很容易地“用 foo 参数调用并返回一个 bar。”

这是 briefly covered in the docs :

In JavaScript, functions can have properties in addition to being callable. However, the function type expression syntax doesn’t allow for declaring properties. If we want to describe something callable with properties, we can write a call signature in an object type

关于typescript - 在接口(interface)声明中,括号是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40915643/

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