我使用dayJS作为我的日期时间库,并希望提供所有时区的列表。
我尝试使用Intl对象:Intl.supportedValuesOf("timeZone")
但我得到了一个打字错误:TS2339: Property 'supportedValuesOf' does not exist on type 'typeof Intl'.
我可以得到这些值,但是我想避免使用@ts-ignore符号
如何为Intl对象添加更新的类型?
我使用dayJS作为我的日期时间库,并希望提供所有时区的列表。
我尝试使用Intl对象:Intl.supportedValuesOf("timeZone")
但我得到了一个打字错误:TS2339: Property 'supportedValuesOf' does not exist on type 'typeof Intl'.
我可以得到这些值,但是我想避免使用@ts-ignore符号
如何为Intl对象添加更新的类型?
1条答案
按热度按时间fykwrbwg1#
参见https://github.com/microsoft/TypeScript/issues/49231
“在Typescript 5.1之前不会提供更改”