We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34283ad commit 2f8d0d0Copy full SHA for 2f8d0d0
1 file changed
src/lib/esnext.intl.d.ts
@@ -35,7 +35,7 @@ declare namespace Intl {
35
*
36
* [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getTimeZones)
37
*/
38
- getTimeZones(): string[];
+ getTimeZones(): string[] | undefined;
39
/**
40
* Returns a `WeekInfo` object with the properties `firstDay`, `weekend` and `minimalDays` for this locale.
41
@@ -55,7 +55,7 @@ declare namespace Intl {
55
56
* [MDN Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getTextInfo#direction)
57
58
- direction: "ltr" | "rtl";
+ direction?: "ltr" | "rtl";
59
}
60
61
0 commit comments