Skip to content

Commit ea36fb3

Browse files
authored
mark Intl.LocalesArgument as readonly (#50135)
1 parent 1592210 commit ea36fb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/es2020.intl.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ declare namespace Intl {
8383
*
8484
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).
8585
*/
86-
type LocalesArgument = UnicodeBCP47LocaleIdentifier | Locale | (UnicodeBCP47LocaleIdentifier | Locale)[] | undefined;
86+
type LocalesArgument = UnicodeBCP47LocaleIdentifier | Locale | readonly (UnicodeBCP47LocaleIdentifier | Locale)[] | undefined;
8787

8888
/**
8989
* An object with some or all of properties of `options` parameter

0 commit comments

Comments
 (0)