@typescript-deploys/pr-build 5.4.0-pr-56652-11 → 5.4.0-pr-56785-6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/lib.es2016.intl.d.ts +1 -1
- package/lib/lib.es2018.intl.d.ts +3 -3
- package/lib/tsc.js +417 -157
- package/lib/tsserver.js +458 -189
- package/lib/typescript.d.ts +9 -4
- package/lib/typescript.js +458 -188
- package/lib/typingsInstaller.js +26 -26
- package/package.json +2 -2
package/lib/lib.es2016.intl.d.ts
CHANGED
|
@@ -27,5 +27,5 @@ declare namespace Intl {
|
|
|
27
27
|
* @param locale A list of String values for which to get the canonical locale names
|
|
28
28
|
* @returns An array containing the canonical and validated locale names.
|
|
29
29
|
*/
|
|
30
|
-
function getCanonicalLocales(locale?: string | string[]): string[];
|
|
30
|
+
function getCanonicalLocales(locale?: string | readonly string[]): string[];
|
|
31
31
|
}
|
package/lib/lib.es2018.intl.d.ts
CHANGED
|
@@ -48,9 +48,9 @@ declare namespace Intl {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
interface PluralRulesConstructor {
|
|
51
|
-
new (locales?: string | string[], options?: PluralRulesOptions): PluralRules;
|
|
52
|
-
(locales?: string | string[], options?: PluralRulesOptions): PluralRules;
|
|
53
|
-
supportedLocalesOf(locales: string | string[], options?: { localeMatcher?: "lookup" | "best fit"; }): string[];
|
|
51
|
+
new (locales?: string | readonly string[], options?: PluralRulesOptions): PluralRules;
|
|
52
|
+
(locales?: string | readonly string[], options?: PluralRulesOptions): PluralRules;
|
|
53
|
+
supportedLocalesOf(locales: string | readonly string[], options?: { localeMatcher?: "lookup" | "best fit"; }): string[];
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
const PluralRules: PluralRulesConstructor;
|