Skip to content

Commit

Permalink
mark Intl.LocalesArgument as readonly (#50135)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Aug 18, 2022
1 parent 1592210 commit ea36fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/es2020.intl.d.ts
Expand Up @@ -83,7 +83,7 @@ declare namespace Intl {
*
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).
*/
type LocalesArgument = UnicodeBCP47LocaleIdentifier | Locale | (UnicodeBCP47LocaleIdentifier | Locale)[] | undefined;
type LocalesArgument = UnicodeBCP47LocaleIdentifier | Locale | readonly (UnicodeBCP47LocaleIdentifier | Locale)[] | undefined;

/**
* An object with some or all of properties of `options` parameter
Expand Down

0 comments on commit ea36fb3

Please sign in to comment.