@typescript-deploys/pr-build 5.1.0-pr-53995-22 → 5.1.0-pr-54047-7
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.es5.d.ts +14 -4
- package/lib/tsc.js +3914 -3587
- package/lib/tsserver.js +5386 -5036
- package/lib/tsserverlibrary.d.ts +202 -176
- package/lib/tsserverlibrary.js +5384 -5037
- package/lib/typescript.d.ts +201 -173
- package/lib/typescript.js +5266 -4937
- package/lib/typingsInstaller.js +1078 -1240
- package/package.json +2 -2
package/lib/lib.es5.d.ts
CHANGED
|
@@ -4329,12 +4329,21 @@ interface Float64Array {
|
|
|
4329
4329
|
sort(compareFn?: (a: number, b: number) => number): this;
|
|
4330
4330
|
|
|
4331
4331
|
/**
|
|
4332
|
+
* Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements
|
|
4332
4333
|
* at begin, inclusive, up to end, exclusive.
|
|
4333
4334
|
* @param begin The index of the beginning of the array.
|
|
4334
4335
|
* @param end The index of the end of the array.
|
|
4335
4336
|
*/
|
|
4336
4337
|
subarray(begin?: number, end?: number): Float64Array;
|
|
4337
4338
|
|
|
4339
|
+
/**
|
|
4340
|
+
* Converts a number to a string by using the current locale.
|
|
4341
|
+
*/
|
|
4342
|
+
toLocaleString(): string;
|
|
4343
|
+
|
|
4344
|
+
/**
|
|
4345
|
+
* Returns a string representation of an array.
|
|
4346
|
+
*/
|
|
4338
4347
|
toString(): string;
|
|
4339
4348
|
|
|
4340
4349
|
/** Returns the primitive value of the specified object. */
|
|
@@ -4383,11 +4392,12 @@ declare var Float64Array: Float64ArrayConstructor;
|
|
|
4383
4392
|
|
|
4384
4393
|
declare namespace Intl {
|
|
4385
4394
|
interface CollatorOptions {
|
|
4386
|
-
usage?:
|
|
4387
|
-
localeMatcher?:
|
|
4395
|
+
usage?: "sort" | "search" | undefined;
|
|
4396
|
+
localeMatcher?: "lookup" | "best fit" | undefined;
|
|
4388
4397
|
numeric?: boolean | undefined;
|
|
4389
|
-
caseFirst?:
|
|
4390
|
-
sensitivity?:
|
|
4398
|
+
caseFirst?: "upper" | "lower" | "false" | undefined;
|
|
4399
|
+
sensitivity?: "base" | "accent" | "case" | "variant" | undefined;
|
|
4400
|
+
collation?: "big5han" | "compat" | "dict" | "direct" | "ducet" | "emoji" | "eor" | "gb2312" | "phonebk" | "phonetic" | "pinyin" | "reformed" | "searchjl" | "stroke" | "trad" | "unihan" | "zhuyin" | undefined;
|
|
4391
4401
|
ignorePunctuation?: boolean | undefined;
|
|
4392
4402
|
}
|
|
4393
4403
|
|