typescript Intl.supportedValuesOf属性“supportedValuesOf”在类型“typeof Intl”上不存在

bweufnob  于 2023-06-07  发布在  TypeScript
关注(0)|答案(1)|浏览(250)

我使用dayJS作为我的日期时间库,并希望提供所有时区的列表。
我尝试使用Intl对象:
Intl.supportedValuesOf("timeZone")
但我得到了一个打字错误:
TS2339: Property 'supportedValuesOf' does not exist on type 'typeof Intl'.
我可以得到这些值,但是我想避免使用@ts-ignore符号
如何为Intl对象添加更新的类型?

相关问题