gpt4 book ai didi

typescript - 如何在 TypeScript 中创建具有类型别名的对象?

转载 作者:行者123 更新时间:2023-12-04 13:14:29 25 4
gpt4 key购买 nike

new BaseListState<BrandCriteria, Brand>()

这是有效的,我添加
export type BrandListState = BaseListState<BrandCriteria, Brand>;

然后
new BrandListState()

这是不允许的。有什么办法可以解决这个问题?

最佳答案

您正在使用没有构造函数的类型别名 ( see doco here ),因此无法使用 new 创建它.您需要为此创建类

class BrandListState extends BaseListState<BrandCriteria, Brand> {}

关于typescript - 如何在 TypeScript 中创建具有类型别名的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61607562/

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